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: * Implementation of CTigerApp sl@0: */ sl@0: sl@0: // INCLUDE FILES sl@0: #include sl@0: #include "TigerApp.h" sl@0: #include "TigerDocument.h" sl@0: sl@0: // ================= MEMBER FUNCTIONS ======================= sl@0: sl@0: // --------------------------------------------------------- sl@0: // CTigerApp::AppDllUid() sl@0: // Returns application UID sl@0: // --------------------------------------------------------- sl@0: // sl@0: TUid CTigerApp::AppDllUid() const sl@0: { sl@0: return KUidTiger; sl@0: } sl@0: sl@0: sl@0: // --------------------------------------------------------- sl@0: // CTigerApp::CreateDocumentL() sl@0: // Creates CTigerDocument object sl@0: // --------------------------------------------------------- sl@0: // sl@0: CApaDocument* CTigerApp::CreateDocumentL() sl@0: { sl@0: return CTigerDocument::NewL( *this ); sl@0: } sl@0: sl@0: sl@0: // ================= OTHER EXPORTED FUNCTIONS ============== sl@0: sl@0: sl@0: CApaApplication* NewApplication() sl@0: { sl@0: return new CTigerApp; sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: return EikStart::RunApplication(NewApplication); sl@0: } sl@0: sl@0: // End of File sl@0: