securitydialogs/simlockui/src/SimLockUI.cpp
changeset 1 d5423fbb4f29
child 5 3b17fc5c9564
equal deleted inserted replaced
0:164170e6151a 1:d5423fbb4f29
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name        : SimLockUI.cpp
       
     4 *  Part of     : Sim Lock UI Application
       
     5 *  Description : Sim Lock UI App framework code
       
     6 *  Version     : 
       
     7 *  
       
     8 * Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     9 * All rights reserved.
       
    10 * This component and the accompanying materials are made available
       
    11 * under the terms of "Eclipse Public License v1.0"
       
    12 * which accompanies this distribution, and is available
       
    13 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    14 *
       
    15 * Initial Contributors:
       
    16 * Nokia Corporation - initial contribution.
       
    17 *
       
    18 * Contributors:
       
    19 *
       
    20 * Description:   Build info file for Ado domain appinstall 
       
    21 * ============================================================================
       
    22 */
       
    23 
       
    24 // System Includes
       
    25 #include <eikstart.h>
       
    26 
       
    27 // User Includes
       
    28 #include "SimLockUIApplication.h"
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // NewApplication
       
    32 // ---------------------------------------------------------------------------
       
    33 CApaApplication* NewApplication()
       
    34     {
       
    35     // Create an application, and return a pointer to it
       
    36     return new CSimLockUIApplication;
       
    37     }
       
    38 
       
    39 // ---------------------------------------------------------------------------
       
    40 // E32Main
       
    41 // ---------------------------------------------------------------------------
       
    42 TInt E32Main()
       
    43     {
       
    44     return EikStart::RunApplication( NewApplication );
       
    45     }
       
    46 
       
    47 // End of file
       
    48 
       
    49