phonesettings/cpphonesettingsplugins/barringplugin/inc/cpbarringplugin.h
changeset 22 6bb1b21d2484
parent 21 92ab7f8d0eab
child 51 f39ed5e045e0
equal deleted inserted replaced
21:92ab7f8d0eab 22:6bb1b21d2484
    15  *
    15  *
    16  */
    16  */
    17 #ifndef CPBARRINGPLUGIN_H
    17 #ifndef CPBARRINGPLUGIN_H
    18 #define CPBARRINGPLUGIN_H
    18 #define CPBARRINGPLUGIN_H
    19 
    19 
    20 #include <cppluginplatinterface.h>
    20 #include <cpplugininterface.h>
    21 
    21 
    22 /*!
    22 /*!
    23     \class CpBarringPlugin 
    23     \class CpBarringPlugin 
    24     \brief The class CpBarringPlugin implements call barring functionality. 
    24     \brief The class CpBarringPlugin implements call barring functionality. 
    25  */
    25  */
    26 class CpBarringPlugin : public QObject, public CpPluginPlatInterface
    26 class CpBarringPlugin : public QObject, public CpPluginInterface
    27 {
    27 {
    28     Q_OBJECT
    28     Q_OBJECT
    29     Q_INTERFACES(CpPluginPlatInterface)
    29     Q_INTERFACES(CpPluginInterface)
    30 
    30 
    31 public:
    31 public:
    32 
    32 
    33     CpBarringPlugin();
    33     CpBarringPlugin();
    34     
    34     
    35     ~CpBarringPlugin();
    35     ~CpBarringPlugin();
    36     
    36     
    37     /*!
    37     /**
    38      From CpPluginPlatInterface.
    38      * From CpPluginInterface
    39      @see CpPluginPlatInterface.
    39      * @see CpPluginInterface.
    40      */
    40      */
    41     CpSettingFormItemData *createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
    41     QList<CpSettingFormItemData*> createSettingFormItemData(
       
    42              CpItemDataHelper &itemDataHelper) const;
    42 };
    43 };
    43 
    44 
    44 #endif // CPBARRINGPLUGIN
    45 #endif // CPBARRINGPLUGIN