messagingfw/deprecate/senduiservices/serviceresolver/src/senduisr.cpp
branchRCL_3
changeset 23 d51193d814ea
parent 22 d2c4c66342f3
child 24 002ade1da91c
equal deleted inserted replaced
22:d2c4c66342f3 23:d51193d814ea
     1 /*
       
     2 * Copyright (c) 2006 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:   Resolves sending service information and stores it to 
       
    15 *                Central Repository.            
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #include <eikstart.h>
       
    21 #include "senduisrapp.h"
       
    22 
       
    23 // ======== GLOBAL FUNCTIONS ========
       
    24 
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // Constructs and returns an application object.
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 CApaApplication* NewApplication()
       
    31     {
       
    32     return new CSendUiSrApp;
       
    33     }
       
    34 
       
    35 // ---------------------------------------------------------------------------
       
    36 // Main function of the application executable.
       
    37 // ---------------------------------------------------------------------------
       
    38 //
       
    39 GLDEF_C TInt E32Main()
       
    40     {
       
    41     return EikStart::RunApplication( NewApplication );
       
    42     }