uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestquery/inc/bctestquerydocument.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2006 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:  document
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BCTESTQUERYDOCUMENT_H
       
    20 #define C_BCTESTQUERYDOCUMENT_H
       
    21 
       
    22 #include <akndoc.h>
       
    23 
       
    24 class  CEikAppUi;
       
    25 
       
    26 /**
       
    27 * CBCTestQueryDocument application class.
       
    28 */
       
    29 class CBCTestQueryDocument : public CAknDocument
       
    30     {
       
    31 public: // Constructors and destructor
       
    32 
       
    33     /**
       
    34      * Symbian two-phased constructor.
       
    35      * @return Pointer to created Document class object.
       
    36      * @param aApp Reference to Application class object.
       
    37      */
       
    38     static CBCTestQueryDocument* NewL( CEikApplication& aApp );
       
    39 
       
    40     /**
       
    41      * Destructor.
       
    42      */
       
    43     virtual ~CBCTestQueryDocument();
       
    44 
       
    45     /**
       
    46      * Overload constructor.
       
    47      * @param aApp Reference to Application class object.
       
    48      */
       
    49     CBCTestQueryDocument( CEikApplication& aApp );
       
    50 
       
    51     /**
       
    52      * Symbian 2nd phase constructor.
       
    53      */
       
    54     void ConstructL();
       
    55 
       
    56 private: // From CEikDocument
       
    57 
       
    58     /**
       
    59      * From CEikDocument, CreateAppUiL.
       
    60      * Creates CBCTestQueryAppUi "App UI" object.
       
    61      * @return Pointer to created AppUi class object.
       
    62      */
       
    63     CEikAppUi* CreateAppUiL();
       
    64 
       
    65     };
       
    66 
       
    67 #endif // C_BCTESTQUERYDOCUMENT_H
       
    68