wlanutilities/testwizard/inc/MyAppEngine.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 MYAPPENGINE_H_
       
    20 #define MYAPPENGINE_H_
       
    21 
       
    22 #include <QObject>
       
    23 
       
    24 /*!
       
    25  * @addtogroup group_test_eap_wizard
       
    26  * @{
       
    27  */
       
    28 
       
    29 class MyAppEngine : public QObject
       
    30     {
       
    31     Q_OBJECT
       
    32 
       
    33 public:
       
    34     MyAppEngine(QObject *parent = 0);
       
    35     virtual ~MyAppEngine();
       
    36     
       
    37 signals:
       
    38     void toFirstView();
       
    39     void toSecondView();
       
    40     
       
    41     };
       
    42 
       
    43 /*! @} */
       
    44 
       
    45 #endif /* MYAPPENGINE_H_ */