wlanutilities/testwizard/inc/MyApplication.h
branchRCL_3
changeset 25 f28ada11abbf
parent 24 63be7eb3fc78
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
     1 /*
       
     2  * Copyright (c) 2010 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: 
       
    15  *   Test Application for wizards
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef MYAPPLICATION_H_
       
    20 #define MYAPPLICATION_H_
       
    21 
       
    22 #include <QSharedPointer>
       
    23 #include <HbApplication.h>
       
    24 
       
    25 // forward declarations
       
    26 class MyAppEngine;
       
    27 class MyAppMainWindow;
       
    28 
       
    29 /*!
       
    30  * @addtogroup group_test_eap_wizard
       
    31  * @{
       
    32  */
       
    33 
       
    34 class MyApplication : public HbApplication
       
    35     {
       
    36 public:
       
    37     MyApplication(int argc, char* argv[]);
       
    38     virtual ~MyApplication();
       
    39     
       
    40 private:
       
    41     QSharedPointer<MyAppEngine> engine;         // owned
       
    42     QSharedPointer<MyAppMainWindow> mainWindow; // owned
       
    43     };
       
    44 
       
    45 /*! @} */
       
    46 
       
    47 #endif /* MYAPPLICATION_H_ */