installationservices/swi/test/testexes/interpretsis_testcase/interpretsis_testcase_Main.cpp
branchRCL_3
changeset 66 8b7f4e561641
parent 65 7333d7932ef7
child 70 e8965914fac7
equal deleted inserted replaced
65:7333d7932ef7 66:8b7f4e561641
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // HelloWorld 
       
    15 // The example is a simple application containing a single view with
       
    16 // the text "Hello World !" drawn on it.
       
    17 // The example includes code for displaying a very simple menu.
       
    18 // This source file contains the single exported function required by 
       
    19 // all UI applications.
       
    20 //
       
    21 
       
    22 
       
    23 #include "interpretsis_testcase.h"
       
    24 
       
    25 //             The entry point for the application code. It creates
       
    26 //             an instance of the CApaApplication derived
       
    27 //             class, CExampleApplication.
       
    28 //
       
    29 
       
    30 
       
    31 
       
    32 #include <eikstart.h>
       
    33 LOCAL_C CApaApplication* NewApplication()
       
    34 	{
       
    35 	return new CExampleApplication;
       
    36 	}
       
    37 	
       
    38 GLDEF_C TInt E32Main()
       
    39 	{
       
    40 	return EikStart::RunApplication(NewApplication);
       
    41 	}
       
    42 	
       
    43