svgtviewer/SvgtViewerPlugin/AppSrc/SVGTViewerApp.cpp
branchRCL_3
changeset 20 5fd161fa28b6
parent 0 632761c941a7
equal deleted inserted replaced
17:e52958d06c29 20:5fd161fa28b6
       
     1 /*
       
     2 * Copyright (c) 2004,2005 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 "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:  Application Entry point for SVGT Viewer App.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <eikstart.h>
       
    22 #include "SVGTViewerAppApplication.h"
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // NewApplication implements...
       
    26 // Creates the SVGT Viewer Application.
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 LOCAL_C CApaApplication* NewApplication()
       
    30     {
       
    31     return ( static_cast<CApaApplication*>( new CSVGTViewerAppApplication ) );
       
    32     }
       
    33 
       
    34 // -----------------------------------------------------------------------------
       
    35 // E32Main implements...
       
    36 // Executable entry point.
       
    37 // -----------------------------------------------------------------------------
       
    38 //
       
    39 GLDEF_C TInt E32Main()
       
    40     {
       
    41     return EikStart::RunApplication( NewApplication );
       
    42     }
       
    43 
       
    44 // End of File