sl@0: /* sl@0: * Copyright (c) 2009 Symbian Foundation Ltd sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Symbian Foundation Ltd - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Tiger app main class declaration sl@0: */ sl@0: sl@0: #ifndef TIGERAPP_H sl@0: #define TIGERAPP_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: sl@0: // CONSTANTS sl@0: /** UID of the application. */ sl@0: const TUid KUidTiger = { 0xA000024A }; sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * Application class. Provides factory method to create a concrete document object. sl@0: */ sl@0: class CTigerApp : public CAknApplication sl@0: { sl@0: private: // Functions from base classes sl@0: sl@0: /** sl@0: * From CApaApplication, creates and returns CTigerDocument document object. sl@0: * @return Pointer to the created document object. sl@0: */ sl@0: CApaDocument* CreateDocumentL(); sl@0: sl@0: /** sl@0: * From CApaApplication, returns application's UID (KUidTiger). sl@0: * @return Value of KUidTiger. sl@0: */ sl@0: TUid AppDllUid() const; sl@0: }; sl@0: sl@0: // OTHER EXPORTED FUNCTIONS sl@0: sl@0: /** sl@0: * Factory method used by the E32Main method to create a new application instance. sl@0: */ sl@0: LOCAL_C CApaApplication* NewApplication(); sl@0: sl@0: /** sl@0: * Entry point to the EXE application. Creates new application instance and sl@0: * runs it by giving it as parameter to EikStart::RunApplication() method. sl@0: */ sl@0: GLDEF_C TInt E32Main(); sl@0: sl@0: #endif sl@0: sl@0: // End of File