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: |
|
15 * Sms Viewer |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MSGSMSVIEWERAPP_H |
|
22 #define MSGSMSVIEWERAPP_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <eikapp.h> // CEikApplication |
|
26 #include <AknServerApp.h> |
|
27 |
|
28 // CONSTANTS |
|
29 const TUid KUidSmsViewer ={0x100058BD}; |
|
30 // Note that the UID values are recorded in three places: |
|
31 // - CPP source file (as pragma data_seg) |
|
32 // - header file (below, as a constant for AppDllUid() method) |
|
33 // - MMP file (i.e. also in the makefile) |
|
34 |
|
35 // CLASS DECLARATION |
|
36 |
|
37 /** |
|
38 * CmsgSmsViewerApplication class |
|
39 * Needed by the EIKON framework |
|
40 */ |
|
41 class CMsgSmsViewerApplication : public CEikApplication |
|
42 { |
|
43 private: |
|
44 void NewAppServerL( CApaAppServer*& aAppServer ); |
|
45 CApaDocument* CreateDocumentL(); // abstract in CEikApplication |
|
46 TUid AppDllUid() const; // abstract in CApaApplication |
|
47 }; |
|
48 |
|
49 #endif // MSGSMSVIEWERAPP_H |
|
50 |
|
51 // End of File |