wlanutilities/wpswizard/inc/wpswizard.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  *   WPS Wizard API
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef WPSWIZARD_H_
       
    20 #define WPSWIZARD_H_
       
    21 
       
    22 
       
    23 // System includes
       
    24 #include <QObject>
       
    25 
       
    26 // User includes
       
    27 #include "wlanwizardplugin.h"
       
    28 
       
    29 // Forward declarations
       
    30 class WlanWizardHelper;
       
    31 class WpsWizardPrivate;
       
    32 
       
    33 // External data types
       
    34 // Constants
       
    35 
       
    36 
       
    37 //Export Declaration
       
    38 #ifdef BUILD_WPS_WIZARD_DLL
       
    39 #define WPS_WIZARD_EXPORT Q_DECL_EXPORT
       
    40 #else
       
    41 #define WPS_WIZARD_EXPORT Q_DECL_IMPORT
       
    42 #endif
       
    43 
       
    44 /*!
       
    45  * @addtogroup group_wps_wizard_plugin
       
    46  * @{
       
    47  */
       
    48 
       
    49 // Class declaration
       
    50 class WPS_WIZARD_EXPORT WpsWizard: public QObject, public WlanWizardPlugin
       
    51 {
       
    52     Q_OBJECT
       
    53    
       
    54 public:
       
    55     
       
    56    explicit WpsWizard( WlanWizardHelper *wizardHelper);
       
    57     ~WpsWizard();
       
    58 
       
    59 signals:
       
    60 
       
    61 public slots:
       
    62 
       
    63 protected:
       
    64 
       
    65 protected slots:
       
    66 
       
    67 private:
       
    68 
       
    69     Q_DISABLE_COPY(WpsWizard)
       
    70 
       
    71 private slots:
       
    72 
       
    73 private:   
       
    74 	
       
    75     //data 
       
    76     
       
    77     //! pointer to the private implementation class.
       
    78     QScopedPointer<WpsWizardPrivate> d_ptr;
       
    79     
       
    80     friend class WpsWizardPrivate;
       
    81     friend class TestWlanWizardContext;
       
    82 };
       
    83 
       
    84 #endif /* WPSWIZARD_H_ */