cmmanager/cpwlanapplugin/inc/cpwlanapplugin.h
changeset 20 9c97ad6591ae
child 27 489cf6208544
equal deleted inserted replaced
18:fcbbe021d614 20:9c97ad6591ae
       
     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 * Control Panel WLAN AP plugin header file.
       
    16 *   
       
    17 */
       
    18 
       
    19 #ifndef	CPWLANAPPLUGIN_H
       
    20 #define	CPWLANAPPLUGIN_H
       
    21 
       
    22 // System includes
       
    23 #include <QObject>
       
    24 #include <cpbearerapplugininterface.h>
       
    25 
       
    26 // User includes
       
    27 
       
    28 // Forward declarations
       
    29 class QTranslator;
       
    30 class CmManagerShim;
       
    31 class CmConnectionMethodShim;
       
    32 
       
    33 // External data types
       
    34 
       
    35 // Constants
       
    36 
       
    37 // Class declaration
       
    38 class CpWlanApPlugin : public QObject, public CpBearerApPluginInterface
       
    39 {
       
    40     Q_OBJECT
       
    41     Q_INTERFACES(CpBearerApPluginInterface)
       
    42     
       
    43 public:
       
    44     CpWlanApPlugin();
       
    45     ~CpWlanApPlugin();
       
    46     
       
    47     uint bearerType() const;
       
    48     CpBaseSettingView *createSettingView(uint connectionMethod);
       
    49     
       
    50 signals:
       
    51     
       
    52 public slots:
       
    53 
       
    54 protected:
       
    55     
       
    56 protected slots:
       
    57 
       
    58 private:
       
    59 
       
    60 private slots:
       
    61     
       
    62 private: // data
       
    63     //! Translator instance
       
    64     QTranslator *mTranslator;
       
    65     //! CM Manager Shim instance
       
    66     CmManagerShim *mCmManager;
       
    67     //! CM Connection Method Shim instance
       
    68     CmConnectionMethodShim *mCmConnectionMethod;
       
    69 };
       
    70 
       
    71 #endif // CPWLANAPPLUGIN_H