memana/analyzetoolclient/configurationappgui/inc/atconfigurationappguidocument.h
changeset 0 f0f2b8682603
equal deleted inserted replaced
-1:000000000000 0:f0f2b8682603
       
     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 #ifndef ATCONFIGURATIONAPPGUIDOCUMENT_H
       
    19 #define ATCONFIGURATIONAPPGUIDOCUMENT_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <akndoc.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 class CEikAppUi;
       
    26 
       
    27 /**
       
    28 * @class CATConfigurationAppGuiDocument ATConfigurationAppGuiDocument.h
       
    29 * @brief A CAknDocument-derived class is required by the S60 application 
       
    30 *           framework. It is responsible for creating the AppUi object. 
       
    31 */
       
    32 class CATConfigurationAppGuiDocument : public CAknDocument
       
    33     {
       
    34 public: 
       
    35     /**
       
    36     * Creates new document object.
       
    37     * @param aApp Reference to the CEikApplication
       
    38     * @return CATConfigurationAppGuiDocument* pointer to the
       
    39     * newly created document class.
       
    40     */
       
    41     static CATConfigurationAppGuiDocument* NewL( CEikApplication& aApp );
       
    42 
       
    43 private: 
       
    44     /**
       
    45     * C++ default constructor.
       
    46     * @param aApp Reference to the CEikApplication
       
    47     */
       
    48     CATConfigurationAppGuiDocument( CEikApplication& aApp );
       
    49     
       
    50     /**
       
    51     * ConstructL.
       
    52     */
       
    53     void ConstructL();
       
    54     
       
    55 public: 
       
    56 
       
    57     /**
       
    58     * From CEikDocument.
       
    59     */
       
    60     CEikAppUi* CreateAppUiL();
       
    61     };
       
    62 #endif // ATCONFIGURATIONAPPGUIDOCUMENT_H