equal
deleted
inserted
replaced
|
1 /* |
|
2 * Name : Application.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 __APPLICATION_H__ |
|
16 #define __APPLICATION_H__ |
|
17 |
|
18 #include <aknapp.h> |
|
19 #include "Application.hrh" |
|
20 |
|
21 const TUid KUidApplication = { _UID3 }; |
|
22 |
|
23 class CApplication : public CAknApplication |
|
24 { |
|
25 public: |
|
26 TUid AppDllUid() const; |
|
27 |
|
28 protected: |
|
29 CApaDocument* CreateDocumentL(); |
|
30 }; |
|
31 |
|
32 #endif // __APPLICATION_H__ |