equal
deleted
inserted
replaced
|
1 |
|
2 /* |
|
3 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
4 * All rights reserved. |
|
5 * This component and the accompanying materials are made available |
|
6 * under the terms of "Eclipse Public License v1.0" |
|
7 * which accompanies this distribution, and is available |
|
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 * |
|
10 * Initial Contributors: |
|
11 * Nokia Corporation - initial contribution. |
|
12 * |
|
13 * Contributors: |
|
14 * |
|
15 * Description: |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CSIPLINEAPP_H |
|
22 #define CSIPLINEAPP_H |
|
23 |
|
24 // INCLUDES |
|
25 |
|
26 #include <eikapp.h> |
|
27 |
|
28 // CONSTANTS |
|
29 const TUid KUidSIPExApp = { 0xA00001EB }; |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * The application class. |
|
35 * This class is the application part of the CKON application framework |
|
36 * for the SIPEx game Application. Creates document class. |
|
37 */ |
|
38 class CSIPExApp : public CEikApplication |
|
39 { |
|
40 |
|
41 public: // Functions from base classes |
|
42 |
|
43 /** |
|
44 * From CApaApplication |
|
45 * Gets the application specific UID |
|
46 * @return The application specific UID |
|
47 */ |
|
48 TUid AppDllUid() const; |
|
49 |
|
50 protected: // Functions from base classes |
|
51 |
|
52 /** |
|
53 * From CApaApplication |
|
54 * Creates an instance of the document class |
|
55 * @return A pointer to the created document instance |
|
56 */ |
|
57 CApaDocument* CreateDocumentL(); |
|
58 }; |
|
59 |
|
60 #endif // CSIPLINEAPP_H |
|
61 |
|
62 // End of File |