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: Declares main application class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef USSDAPP_H |
|
20 #define USSDAPP_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <aknapp.h> |
|
24 |
|
25 // CONSTANTS |
|
26 // UID of the application |
|
27 const TUid KUidussd = { 0x10005955 }; |
|
28 |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * CUssdApp application class. |
|
34 * Provides factory to create concrete document object. |
|
35 * |
|
36 * @since 1.0 |
|
37 */ |
|
38 class CUssdApp : public CAknApplication |
|
39 { |
|
40 |
|
41 private: |
|
42 |
|
43 /** |
|
44 * From CApaApplication, creates CUssdDocument document object. |
|
45 * @return A pointer to the created document object. |
|
46 */ |
|
47 CApaDocument* CreateDocumentL(); |
|
48 |
|
49 /** |
|
50 * From CApaApplication, returns application's UID (KUidussd). |
|
51 * @return The value of KUidussd. |
|
52 */ |
|
53 TUid AppDllUid() const; |
|
54 }; |
|
55 |
|
56 #endif |
|
57 |
|
58 // End of File |
|
59 |