cmmanager/cpipsettingsplugin/inc/cpipsettingsplugin.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 *   
       
    16 */
       
    17 
       
    18 #ifndef	CPIPSETTINGSPLUGIN_H
       
    19 #define	CPIPSETTINGSPLUGIN_H
       
    20 
       
    21 // System includes
       
    22 #include <QObject>
       
    23 #include <cpplugininterface.h>
       
    24 
       
    25 // User includes
       
    26 
       
    27 // Forward declarations
       
    28 class QTranslator;
       
    29 
       
    30 // External data types
       
    31 
       
    32 // Constants
       
    33 
       
    34 // Class declaration
       
    35 class CpIpSettingsPlugin : public QObject, public CpPluginInterface
       
    36 {
       
    37     Q_OBJECT
       
    38     Q_INTERFACES(CpPluginInterface)
       
    39     
       
    40 public:
       
    41     CpIpSettingsPlugin();
       
    42     ~CpIpSettingsPlugin();
       
    43     QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
       
    44     
       
    45 signals:
       
    46 
       
    47 public slots:
       
    48 
       
    49 protected:
       
    50 
       
    51 protected slots:
       
    52 
       
    53 private:
       
    54 
       
    55 private slots:
       
    56     
       
    57 private: // data
       
    58     QTranslator *mTranslator;
       
    59 };
       
    60 
       
    61 #endif // CPIPSETTINGSPLUGIN_H