equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: This is the header file for the CAdtUpdaterApplication class. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __ADTUPDATER_APPLICATION_H__ |
|
19 #define __ADTUPDATER_APPLICATION_H__ |
|
20 |
|
21 // System includes |
|
22 #include <aknapp.h> |
|
23 |
|
24 // User includes |
|
25 |
|
26 // Forward declarations |
|
27 |
|
28 // Class declaration |
|
29 /** |
|
30 * @class CAdtUpdaterApplication |
|
31 * @brief The CAknApplication inheriting class. |
|
32 * @exe adtupdater.exe |
|
33 */ |
|
34 class CAdtUpdaterApplication : public CAknApplication |
|
35 { |
|
36 public: // Functions from base classes |
|
37 |
|
38 /** |
|
39 * @brief From CAknApplication. Creates the document class. |
|
40 * @return CApaDocument* Pointer to document object. |
|
41 */ |
|
42 CApaDocument* CreateDocumentL(); |
|
43 |
|
44 /** |
|
45 * @brief From CApaApplication. Returns UID3. |
|
46 * @return TUid Uid of the application. |
|
47 */ |
|
48 TUid AppDllUid() const; |
|
49 }; |
|
50 |
|
51 #endif // __ADTUPDATER_APPLICATION_H__ |
|
52 |
|
53 // End of file |