sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Symbian Foundation Ltd
|
sl@0
|
3 |
* This component and the accompanying materials are made available
|
sl@0
|
4 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
* which accompanies this distribution, and is available
|
sl@0
|
6 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Initial Contributors:
|
sl@0
|
9 |
* Symbian Foundation Ltd - initial contribution.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Contributors:
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Description:
|
sl@0
|
14 |
* Tiger app main class declaration
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef TIGERAPP_H
|
sl@0
|
18 |
#define TIGERAPP_H
|
sl@0
|
19 |
|
sl@0
|
20 |
// INCLUDES
|
sl@0
|
21 |
#include <aknapp.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
// CONSTANTS
|
sl@0
|
24 |
/** UID of the application. */
|
sl@0
|
25 |
const TUid KUidTiger = { 0xA000024A };
|
sl@0
|
26 |
|
sl@0
|
27 |
// CLASS DECLARATION
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
* Application class. Provides factory method to create a concrete document object.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class CTigerApp : public CAknApplication
|
sl@0
|
33 |
{
|
sl@0
|
34 |
private: // Functions from base classes
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
* From CApaApplication, creates and returns CTigerDocument document object.
|
sl@0
|
38 |
* @return Pointer to the created document object.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
CApaDocument* CreateDocumentL();
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
* From CApaApplication, returns application's UID (KUidTiger).
|
sl@0
|
44 |
* @return Value of KUidTiger.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
TUid AppDllUid() const;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
// OTHER EXPORTED FUNCTIONS
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
* Factory method used by the E32Main method to create a new application instance.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
LOCAL_C CApaApplication* NewApplication();
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
* Entry point to the EXE application. Creates new application instance and
|
sl@0
|
58 |
* runs it by giving it as parameter to EikStart::RunApplication() method.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
GLDEF_C TInt E32Main();
|
sl@0
|
61 |
|
sl@0
|
62 |
#endif
|
sl@0
|
63 |
|
sl@0
|
64 |
// End of File
|