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