cmmanager/cpipsettingsplugin/inc/cpipsettingsplugin.h
branchRCL_3
changeset 58 83ca720e2b9a
parent 57 05bc53fe583b
child 62 bb1f80fb7db2
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
     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 "Network Settings" plugin header file.
       
    16 *   
       
    17 */
       
    18 
       
    19 #ifndef	CPIPSETTINGSPLUGIN_H
       
    20 #define	CPIPSETTINGSPLUGIN_H
       
    21 
       
    22 // System includes
       
    23 #include <QObject>
       
    24 #include <QSharedPointer>
       
    25 #include <cpplugininterface.h>
       
    26 
       
    27 // User includes
       
    28 
       
    29 // Forward declarations
       
    30 class HbTranslator;
       
    31 
       
    32 // External data types
       
    33 
       
    34 // Constants
       
    35 
       
    36 // Class declaration
       
    37 class CpIpSettingsPlugin : public QObject, public CpPluginInterface
       
    38 {
       
    39     Q_OBJECT
       
    40     Q_INTERFACES(CpPluginInterface)
       
    41     
       
    42 public:
       
    43     CpIpSettingsPlugin();
       
    44     ~CpIpSettingsPlugin();
       
    45     QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    46     
       
    47 signals:
       
    48 
       
    49 public slots:
       
    50 
       
    51 protected:
       
    52 
       
    53 protected slots:
       
    54 
       
    55 private:
       
    56     Q_DISABLE_COPY(CpIpSettingsPlugin)
       
    57 
       
    58 private slots:
       
    59     
       
    60 private: // data
       
    61     //! Translator instance
       
    62     QSharedPointer<HbTranslator> mTranslator;
       
    63 };
       
    64 
       
    65 #endif // CPIPSETTINGSPLUGIN_H