clock2/clockui/uilayer/src/clock.cpp
branchRCL_3
changeset 30 bd7edf625bdd
parent 0 f979ecb2b13e
equal deleted inserted replaced
29:12af337248b1 30:bd7edf625bdd
       
     1 /*
       
     2 * Copyright (c) 2008 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:   This contains the E32Main, the entry point of the clock application.
       
    15 *
       
    16 */
       
    17 
       
    18 // System includes
       
    19 #include <e32def.h>
       
    20 #include <e32base.h>
       
    21 #include <eikstart.h>
       
    22 
       
    23 // User includes
       
    24 #include "clockapplication.h"
       
    25 
       
    26 // ---------------------------------------------------------
       
    27 // NewApplication()
       
    28 // Creates a new application
       
    29 // ---------------------------------------------------------
       
    30 //
       
    31 LOCAL_C CApaApplication* NewApplication()
       
    32     {
       
    33     return new CClockApplication;
       
    34     }
       
    35 
       
    36 // ---------------------------------------------------------
       
    37 // E32Main()
       
    38 // Main entry point of the application
       
    39 // ---------------------------------------------------------
       
    40 //
       
    41 GLDEF_C TInt E32Main()
       
    42     {
       
    43     return EikStart::RunApplication( NewApplication );
       
    44     }
       
    45 
       
    46 // End of file