satui/satapp/SATUIInc/CSatUiDocument.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 2002 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 *    Defines CSatUiDocument class
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef CSATUIDOCUMENT_H
       
    22 #define CSATUIDOCUMENT_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <AknDoc.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 class CSatUiActionPerformer;
       
    29 class CSatUiViewAppUi;
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 *  SatUi Document class.
       
    35 */
       
    36 class CSatUiDocument : public CAknDocument
       
    37     {
       
    38     public: // Constructors and destructor
       
    39 
       
    40         /**
       
    41         * C++ default constructor.
       
    42         */
       
    43         CSatUiDocument(CEikApplication& aApp): CAknDocument(aApp) {};
       
    44 
       
    45         /**
       
    46         * Symbian OS constructor.
       
    47         */
       
    48         void ConstructL();
       
    49 
       
    50         /**
       
    51         * Destructor.
       
    52         */
       
    53         virtual ~CSatUiDocument();
       
    54 
       
    55     private:
       
    56 
       
    57         /**
       
    58         * From CEikDocument Creates ViewAppUi object.
       
    59         * @return The pointer to the created object.
       
    60         */
       
    61         CEikAppUi* CreateAppUiL();
       
    62 
       
    63     private://Data
       
    64 
       
    65         //Own: Command receiver
       
    66         CSatUiActionPerformer *iActionPerformer;
       
    67 
       
    68         // application UI pointer
       
    69         CSatUiViewAppUi* iApplicationUi;
       
    70     };
       
    71 
       
    72 #endif    // CSATUIDOCUMENT_H
       
    73 
       
    74 //  End of File