uifw/AvKon/tsrc/bc/bctesttemplate/inc/bctesttemplateappUi.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 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:  declaration of appui.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BCTESTTEMPLATEAPPUI_H
       
    20 #define C_BCTESTTEMPLATEAPPUI_H
       
    21 
       
    22 #include <aknviewappui.h>
       
    23 
       
    24 class CBCTestTemplateView;
       
    25 class CBCTestUtil;
       
    26 
       
    27 /**
       
    28  *  Application UI class
       
    29  *
       
    30  *  @lib bctestutil.lib
       
    31  */
       
    32 class CBCTestTemplateAppUi : public CAknViewAppUi
       
    33     {
       
    34     public: // Constructors and destructor
       
    35 
       
    36         /**
       
    37          * constructor
       
    38          */
       
    39         CBCTestTemplateAppUi();
       
    40 
       
    41         /**
       
    42          * symbian 2nd constructor
       
    43          */
       
    44         void ConstructL();
       
    45 
       
    46         /**
       
    47          * destructor
       
    48          */
       
    49         virtual ~CBCTestTemplateAppUi();
       
    50 
       
    51     private:
       
    52 
       
    53         /**
       
    54          * From CEikAppUi
       
    55          */
       
    56         void HandleCommandL( TInt aCommand );
       
    57 
       
    58     private: // data
       
    59         
       
    60         /**
       
    61          * pointor to the view.
       
    62          * own
       
    63          */
       
    64         CBCTestTemplateView*  iView;
       
    65 
       
    66 		/**
       
    67          * pointor to the BC Test framework utility.
       
    68          * own
       
    69          */
       
    70         CBCTestUtil*  iTestUtil;
       
    71     };
       
    72 
       
    73 #endif // C_BCTESTTEMPLATEAPPUI_H
       
    74 
       
    75 // End of File