wlanutilities/testwizard/inc/MyAppMainWindow.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     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 MYAPPMAINWINDOW_H_
       
    20 #define MYAPPMAINWINDOW_H_
       
    21 
       
    22 #include <qobject>
       
    23 #include <hbmainwindow.h>
       
    24 
       
    25 // Forward declarations
       
    26 class FirstView;
       
    27 
       
    28 class HbDocumentLoader;
       
    29 
       
    30 /*!
       
    31  * @addtogroup group_test_eap_wizard
       
    32  * @{
       
    33  */
       
    34 class MyAppMainWindow : public HbMainWindow
       
    35     {
       
    36 
       
    37 public:
       
    38     MyAppMainWindow();
       
    39     virtual ~MyAppMainWindow();
       
    40 
       
    41 public slots:
       
    42     void toFirstView();
       
    43 
       
    44 private:
       
    45     void addFirstView();
       
    46     
       
    47 private:
       
    48     FirstView *mFirstView;
       
    49    
       
    50     };
       
    51 
       
    52 /*! @} */
       
    53 
       
    54 #endif /* MYAPPMAINWINDOW_H_ */