Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "Eclipse Public License v1.0"
5 * which accompanies this distribution, and is available
6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 * Initial Contributors:
9 * Symbian Foundation Ltd - initial contribution.
14 * Tiger app main class declaration
24 /** UID of the application. */
25 const TUid KUidTiger = { 0xA000024A };
30 * Application class. Provides factory method to create a concrete document object.
32 class CTigerApp : public CAknApplication
34 private: // Functions from base classes
37 * From CApaApplication, creates and returns CTigerDocument document object.
38 * @return Pointer to the created document object.
40 CApaDocument* CreateDocumentL();
43 * From CApaApplication, returns application's UID (KUidTiger).
44 * @return Value of KUidTiger.
46 TUid AppDllUid() const;
49 // OTHER EXPORTED FUNCTIONS
52 * Factory method used by the E32Main method to create a new application instance.
54 LOCAL_C CApaApplication* NewApplication();
57 * Entry point to the EXE application. Creates new application instance and
58 * runs it by giving it as parameter to EikStart::RunApplication() method.
60 GLDEF_C TInt E32Main();