uifw/AvKon/tsrc/bc/S60_SDK3.0/bctestcmdlg/inc/bctestcmdlgappUi.h
changeset 22 75713bee6484
parent 21 558113899881
child 26 62ef28f7b435
child 28 d33307312dfe
equal deleted inserted replaced
21:558113899881 22:75713bee6484
     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:  Test BC for Template control API.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BCTESTCMDLGAPPUI_H
       
    20 #define C_BCTESTCMDLGAPPUI_H
       
    21 
       
    22 #include <aknviewappui.h>
       
    23 
       
    24 class CBCTestCmDlgView;
       
    25 
       
    26 /**
       
    27  *  Application UI class
       
    28  *
       
    29  *  @lib bctestutil.lib
       
    30  */
       
    31 class CBCTestCmDlgAppUi : public CAknViewAppUi
       
    32     {
       
    33     public: // Constructors and destructor
       
    34 
       
    35         /**
       
    36          * ctor
       
    37          */
       
    38         CBCTestCmDlgAppUi();
       
    39 
       
    40         /**
       
    41          * symbian 2nd ctor
       
    42          */
       
    43         void ConstructL();
       
    44 
       
    45         /**
       
    46          * dtor
       
    47          */
       
    48         virtual ~CBCTestCmDlgAppUi();
       
    49 
       
    50     private:
       
    51 
       
    52         /**
       
    53          * From CEikAppUi
       
    54          */
       
    55         void HandleCommandL( TInt aCommand );
       
    56 
       
    57     private: // data
       
    58         
       
    59         /**
       
    60          * pointor to the view.
       
    61          * own
       
    62          */
       
    63         CBCTestCmDlgView*  iView;
       
    64     };
       
    65 
       
    66 #endif // C_BCTESTCMDLGAPPUI_H
       
    67 
       
    68 // End of File