browserui/operatormenu/src/OperatorMenuApp.cpp
changeset 51 48e827313edd
parent 37 481242ead638
child 53 f427d27b98d8
equal deleted inserted replaced
37:481242ead638 51:48e827313edd
     1 /*
       
     2 * Copyright (c) 2003 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:  COperatorMenuApp Implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "OperatorMenuApp.h"
       
    21 #include "OperatorMenuDocument.h"
       
    22 #include <eikstart.h>
       
    23 
       
    24 // ================= MEMBER FUNCTIONS =======================
       
    25 
       
    26 LOCAL_C CApaApplication* NewApplication()
       
    27 	{
       
    28 	return new COperatorMenuApp;
       
    29 	}
       
    30 	
       
    31 GLDEF_C TInt E32Main()
       
    32 	{
       
    33 	return EikStart::RunApplication( NewApplication );
       
    34 	}
       
    35 
       
    36 // ---------------------------------------------------------
       
    37 // COperatorMenuApp::AppDllUid()
       
    38 // Returns application UID
       
    39 // ---------------------------------------------------------
       
    40 //
       
    41 TUid COperatorMenuApp::AppDllUid() const
       
    42     {
       
    43     return KUidOperatorMenu;
       
    44     }
       
    45 
       
    46    
       
    47 // ---------------------------------------------------------
       
    48 // COperatorMenuApp::CreateDocumentL()
       
    49 // Creates COperatorMenuDocument object
       
    50 // ---------------------------------------------------------
       
    51 //
       
    52 CApaDocument* COperatorMenuApp::CreateDocumentL()
       
    53     {
       
    54     return COperatorMenuDocument::NewL( *this );
       
    55     }
       
    56 // End of File  
       
    57