equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Application class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CPROFILEAPPLICATION_H |
|
21 #define CPROFILEAPPLICATION_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <aknapp.h> |
|
25 #include "CProfileDocument.h" |
|
26 |
|
27 // CONSTANTS |
|
28 const TUid KUidProfileApp = { 0x100058F8 }; // UID of the application |
|
29 |
|
30 // CLASS DECLARATION |
|
31 /** |
|
32 * Application class. |
|
33 * |
|
34 * @lib ProfileApp.app |
|
35 * @since 1.2 |
|
36 */ |
|
37 class CProfileApplication : public CAknApplication |
|
38 { |
|
39 private: // Functions from base classes |
|
40 |
|
41 /** |
|
42 * From CEikApplication |
|
43 */ |
|
44 CApaDocument* CreateDocumentL() { return( CProfileDocument::NewL( *this ) ); } |
|
45 |
|
46 /** |
|
47 * From CApaApplication |
|
48 */ |
|
49 TUid AppDllUid() const { return KUidProfileApp; } |
|
50 |
|
51 }; |
|
52 |
|
53 #endif // CPROFILEAPPLICATION_H |
|
54 |
|
55 // End of File |
|