locationsatviewrefapp/inc/SatelliteReferenceApp.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2009 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * ============================================================================
       
    20 *  Name     : SatelliteReferenceApp 
       
    21 *  Part of  : Satellite Reference App
       
    22 * ============================================================================
       
    23 */
       
    24 
       
    25 #ifndef SATELLITE_REFERENCE_APP_H
       
    26 #define SATELLITE_REFERENCE_APP_H
       
    27 
       
    28 // INCLUDES
       
    29 #include <aknapp.h>
       
    30 
       
    31 // CONSTANTS
       
    32 // UID of the application
       
    33 const TUid KUidSatelliteReferenceApp = { 0xA000018A };
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 /**
       
    38 * SatelliteReference application class.
       
    39 * Provides factory to create concrete document object.
       
    40 * 
       
    41 */
       
    42 class CSatelliteReferenceApp : public CAknApplication
       
    43     {
       
    44     
       
    45     public: // Functions from base classes
       
    46     private:
       
    47 
       
    48         /**
       
    49         * From CApaApplication, creates document object.
       
    50         * @return A pointer to the created document object.
       
    51         */
       
    52         CApaDocument* CreateDocumentL();
       
    53         
       
    54         /**
       
    55         * From CApaApplication, returns application's UID.
       
    56         * @return The value of KUidSatelliteReferenceApp.
       
    57         */
       
    58         TUid AppDllUid() const;
       
    59     };
       
    60 
       
    61 #endif
       
    62 
       
    63 // End of File
       
    64