equal
deleted
inserted
replaced
|
1 /* |
|
2 * Name : AppUi.h |
|
3 * Description : |
|
4 * Project : This file is part of OpenMAR, an Open Mobile Augmented Reality browser |
|
5 * Website : http://OpenMAR.org |
|
6 * |
|
7 * Copyright (c) 2010 David Caabeiro |
|
8 * |
|
9 * All rights reserved. This program and the accompanying materials are made available |
|
10 * under the terms of the Eclipse Public License v1.0 which accompanies this |
|
11 * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
|
12 * |
|
13 */ |
|
14 |
|
15 #ifndef __APPUI_H__ |
|
16 #define __APPUI_H__ |
|
17 |
|
18 #include <AknViewAppUi.h> |
|
19 |
|
20 class CSettingManager; |
|
21 |
|
22 class CAppUi : public CAknViewAppUi |
|
23 { |
|
24 public: |
|
25 void ConstructL(); |
|
26 ~CAppUi(); |
|
27 |
|
28 private: |
|
29 void HandleCommandL(TInt aCommand); |
|
30 CArrayFix<TCoeHelpContext>* HelpContextL() const; |
|
31 |
|
32 private: |
|
33 CSettingManager* iSetting; |
|
34 }; |
|
35 |
|
36 #endif // __APPUI_H__ |