locationsatviewrefapp/inc/SatelliteReferenceDocument.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     : SatelliteReferenceDocument
       
    21 *  Part of  : Satellite Reference App
       
    22 * ============================================================================
       
    23 */
       
    24 
       
    25 #ifndef SATELLITE_REFERENCE_DOCUMENT_H
       
    26 #define SATELLITE_REFERENCE_DOCUMENT_H
       
    27 
       
    28 // INCLUDES
       
    29 #include <AknDoc.h>
       
    30    
       
    31 
       
    32 // FORWARD DECLARATIONS
       
    33 class  CEikAppUi;
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 /**
       
    38 *  CSatelliteReferenceDocument application class.
       
    39 */
       
    40 class CSatelliteReferenceDocument : public CAknDocument
       
    41     {
       
    42     public: // Constructors and destructor
       
    43         /**
       
    44         * Two-phased constructor.
       
    45         */
       
    46         static CSatelliteReferenceDocument* NewL(CEikApplication& aApp);
       
    47 
       
    48         /**
       
    49         * Destructor.
       
    50         */
       
    51         virtual ~CSatelliteReferenceDocument();
       
    52 
       
    53     private:
       
    54 
       
    55         /**
       
    56         * EPOC default constructor.
       
    57         */
       
    58         CSatelliteReferenceDocument(CEikApplication& aApp);
       
    59         void ConstructL();
       
    60 
       
    61     private:
       
    62 
       
    63         /**
       
    64         * From CEikDocument, create "App UI" object.
       
    65         */
       
    66         CEikAppUi* CreateAppUiL();
       
    67     };
       
    68 
       
    69 #endif
       
    70 
       
    71 // End of File
       
    72