browserutilities/schemehandler/SchemeApp/src/SchemeApp.cpp
changeset 0 dd21522fd290
child 68 92a765b5b3e7
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *      Implementation of class CSchemeApp.
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include "SchemeApp.h"
       
    23 #include "SchemeDocument.h"
       
    24 #include "BldVariant.hrh"
       
    25 #include <eikstart.h>
       
    26 
       
    27 // ================= MEMBER FUNCTIONS =======================
       
    28 
       
    29 // ---------------------------------------------------------
       
    30 // CSchemeApp::CreateDocumentL()
       
    31 // ---------------------------------------------------------
       
    32 //
       
    33 CApaDocument* CSchemeApp::CreateDocumentL()
       
    34     {
       
    35     return CSchemeDocument::NewL( *this );
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------
       
    39 // CSchemeApp::AppDllUid()
       
    40 // ---------------------------------------------------------
       
    41 //
       
    42 TUid CSchemeApp::AppDllUid() const
       
    43     {
       
    44     return KSchemeApp;
       
    45     }
       
    46 
       
    47 LOCAL_C CApaApplication* NewApplication()
       
    48 	{
       
    49 	return new CSchemeApp;
       
    50 	}
       
    51 
       
    52 GLDEF_C TInt E32Main()
       
    53 	{
       
    54 	return EikStart::RunApplication(NewApplication);
       
    55 	}
       
    56 
       
    57 // End of File  
       
    58