pnpmobileservices/pnpms/OnlineSupport/inc/CCMDocument.h
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2003 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:  This file contains the header file of the CCMDocument object.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CCMDOCUMENT_H
       
    21 #define CCMDOCUMENT_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <AknDoc.h>
       
    25 
       
    26 // CONSTANTS
       
    27 // None
       
    28 
       
    29 // MACROS
       
    30 // None
       
    31 
       
    32 // DATA TYPES
       
    33 // None
       
    34 
       
    35 // FUNCTION PROTOTYPES
       
    36 // None
       
    37 
       
    38 // FORWARD DECLARATIONS
       
    39 class  CEikAppUi;
       
    40 
       
    41 
       
    42 // CLASS DECLARATION
       
    43 
       
    44 /**
       
    45 *  CCMDocument application class.
       
    46 *
       
    47 *  @lib ConfManager.app
       
    48 *  @since 2.0
       
    49 */
       
    50 
       
    51 class CCMDocument : public CAknDocument
       
    52     {
       
    53     public: // Constructors and destructor
       
    54 
       
    55         /**
       
    56         * EPOC default constructor.
       
    57         */
       
    58         CCMDocument( CEikApplication& aApp );
       
    59 
       
    60         /**
       
    61         * Destructor.
       
    62         */
       
    63         virtual ~CCMDocument();
       
    64 
       
    65     private: // Functions from base classes
       
    66 
       
    67         /**
       
    68         * From CEikDocument Creates CCMAppUi object.
       
    69         * @since 2.0
       
    70         * @return Pointer to CEikAppUi object
       
    71         */
       
    72         CEikAppUi* CreateAppUiL();
       
    73         
       
    74    };
       
    75 
       
    76 #endif  // CCMDOCUMENT_H
       
    77 
       
    78 // End of File
       
    79