phonesettings/cpphonesettingsplugins/divertplugin/src/cpdivertplugin.h
changeset 22 6bb1b21d2484
parent 21 92ab7f8d0eab
child 30 ebdbd102c78a
equal deleted inserted replaced
21:92ab7f8d0eab 22:6bb1b21d2484
    15  *
    15  *
    16  */
    16  */
    17 #ifndef CPDIVERTPLUGIN_H
    17 #ifndef CPDIVERTPLUGIN_H
    18 #define CPDIVERTPLUGIN_H
    18 #define CPDIVERTPLUGIN_H
    19 
    19 
    20 #include <cppluginplatinterface.h>
    20 #include <cpplugininterface.h>
    21 
    21 
    22 /*!
    22 /*!
    23     \class CpDivertPlugin
    23     \class CpDivertPlugin
    24     \brief The class CpDivertPlugin implements call divert functionality. 
    24     \brief The class CpDivertPlugin implements call divert functionality. 
    25  */
    25  */
    26 class CpDivertPlugin : public QObject, public CpPluginPlatInterface
    26 class CpDivertPlugin : 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     CpDivertPlugin();
    33     CpDivertPlugin();
    34     
    34     
    35     ~CpDivertPlugin();
    35     ~CpDivertPlugin();
    36     
    36     
    37     /*!
    37     /**
    38      From CpPluginPlatInterface.
    38      * From CpPluginInterface
    39      @see CpPluginPlatInterface.
    39      * @see CpPluginInterface.
    40      */
    40      */
    41     CpSettingFormItemData *createSettingFormItemData(
    41     QList<CpSettingFormItemData*> createSettingFormItemData(
    42             CpItemDataHelper &itemDataHelper) const;
    42             CpItemDataHelper &itemDataHelper) const;
    43 };
    43 };
    44 
    44 
    45 #endif // CPDIVERTPLUGIN_H
    45 #endif // CPDIVERTPLUGIN_H