src/NPR.cpp
changeset 0 0049171ecffb
equal deleted inserted replaced
-1:000000000000 0:0049171ecffb
       
     1 /*
       
     2  ============================================================================
       
     3  Name		: NPR.cpp
       
     4  Author	  : John Kern
       
     5  Copyright (c) 2009 Symbian Foundation Ltd
       
     6  This component and the accompanying materials are made available
       
     7  under the terms of the License "Eclipse Public License v1.0"
       
     8  which accompanies this distribution, and is available
       
     9  at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    10 
       
    11  Initial Contributors:
       
    12  Symbian Foundation Ltd - initial contribution.
       
    13  
       
    14  Contributors: John Kern
       
    15 Description : Main application class
       
    16  ============================================================================
       
    17  */
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <eikstart.h>
       
    21 #include "NPRApplication.h"
       
    22 
       
    23 LOCAL_C CApaApplication* NewApplication()
       
    24 	{
       
    25 	return new CNPRApplication;
       
    26 	}
       
    27 
       
    28 GLDEF_C TInt E32Main()
       
    29 	{
       
    30 	return EikStart::RunApplication(NewApplication);
       
    31 	}
       
    32