omads/omadsappui/ui/inc/NSmlDSSyncApp.h
branchRCL_3
changeset 52 4f0867e42d62
parent 0 dab8a81a92de
equal deleted inserted replaced
51:8e7494275d3a 52:4f0867e42d62
       
     1 /*
       
     2 * Copyright (c) 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: A sync ui application class 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef NSMLDSSYNC_APP_H
       
    21 #define NSMLDSSYNC_APP_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 #include <eikapp.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // UID of the application
       
    30 const TUid KUidSmlSyncApp = { 0x101F6DE4 };
       
    31 
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 
       
    36 /**
       
    37 * Class CNSmlDSSyncApp.
       
    38 * 
       
    39 */
       
    40 class CNSmlDSSyncApp : public CAknApplication
       
    41     {
       
    42     
       
    43     private:
       
    44 
       
    45         /**
       
    46         * From CApaApplication, creates application document object.
       
    47         * @param None.
       
    48         * @return A pointer to the created document object.
       
    49         */
       
    50         CApaDocument* CreateDocumentL();
       
    51         
       
    52         /**
       
    53         * From CApaApplication, returns application's UID.
       
    54         * @param None.
       
    55         * @return App uid.
       
    56         */
       
    57         TUid AppDllUid() const;
       
    58     };
       
    59 
       
    60 
       
    61 #endif  // NSMLDSSYNC_APP_H
       
    62 
       
    63 
       
    64 // End of File
       
    65