uiacceltk/hitchcock/tsrc/alfperfapp/inc/alfperfappdocument.h
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2008 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:  alfperfapp document class definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_ALFPERFAPPDOCUMENT_H
       
    20 #define C_ALFPERFAPPDOCUMENT_H
       
    21 
       
    22 #include <akndoc.h>
       
    23 
       
    24 class CEikAppUi;
       
    25 class CAlfPerfAppModel;
       
    26 
       
    27 /**
       
    28  *  CAlfPerfAppDocument document class.
       
    29  */
       
    30 class CAlfPerfAppDocument : public CAknDocument
       
    31     {
       
    32 public:
       
    33 
       
    34     CAlfPerfAppDocument( CEikApplication& aApp );
       
    35     ~CAlfPerfAppDocument();
       
    36 
       
    37     // New functions
       
    38     void ConstructL();
       
    39 
       
    40     // From base class CAknDocument
       
    41     CEikAppUi* CreateAppUiL();
       
    42 
       
    43 private:
       
    44     /**
       
    45      * Model.
       
    46      * Owned.
       
    47      */
       
    48     CAlfPerfAppModel* iModel;
       
    49     
       
    50     };
       
    51 
       
    52 #endif // C_ALFPERFAPPDOCUMENT_H
       
    53             
       
    54 // End of File