uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomm3g/inc/bctestdomm3gappui.h
changeset 21 558113899881
parent 14 3320e4e6e8bb
child 22 75713bee6484
child 33 b3425bf29f82
equal deleted inserted replaced
14:3320e4e6e8bb 21:558113899881
     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:  Define appui class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CBCTESTDOMM3GAPPUI_H
       
    20 #define C_CBCTESTDOMM3GAPPUI_H
       
    21 
       
    22 #include <aknviewappui.h>
       
    23 
       
    24 class CBCTestDomM3gView;
       
    25 class CBCTestUtil;
       
    26 
       
    27 /**
       
    28  *  Application UI class
       
    29  *
       
    30  *  @lib bctestutil.lib
       
    31  */
       
    32 class CBCTestDomM3gAppUi : public CAknViewAppUi
       
    33     {
       
    34 public: // Constructors and destructor
       
    35 
       
    36     /**
       
    37      * ctor
       
    38      */
       
    39     CBCTestDomM3gAppUi();
       
    40 
       
    41     /**
       
    42      * symbian 2nd ctor
       
    43      */
       
    44     void ConstructL();
       
    45 
       
    46     /**
       
    47      * dtor
       
    48      */
       
    49     virtual ~CBCTestDomM3gAppUi();
       
    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     CBCTestDomM3gView*  iView;
       
    65 
       
    66     /**
       
    67      * pointor to the BC Test framework utility.
       
    68      * own
       
    69      */
       
    70     CBCTestUtil*  iTestUtil;
       
    71 
       
    72     };
       
    73 
       
    74 #endif //C_CBCTESTDOMM3GAPPUI_H