diff -r a5692c68d772 -r 593f946f4fec controlpanelui/src/cpcategorymodel/tsrc/testpluginsforcpcategorymodel/secondpluginforcpcategorymodel/src/secondpluginforcpcategorymodel.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/controlpanelui/src/cpcategorymodel/tsrc/testpluginsforcpcategorymodel/secondpluginforcpcategorymodel/src/secondpluginforcpcategorymodel.h Wed Sep 29 10:09:58 2010 +0800 @@ -0,0 +1,20 @@ +#ifndef SECONDPLUGINFORCPCATEGORYMODEL_H +#define SECONDPLUGINFORCPCATEGORYMODEL_H + +#include +#include +#include + +class SecondPluginForCpCategoryModel : public QObject, public CpPluginInterface, public CpLauncherInterface +{ + Q_OBJECT + Q_INTERFACES(CpPluginInterface) + Q_INTERFACES(CpLauncherInterface) +public: + SecondPluginForCpCategoryModel(); + virtual ~SecondPluginForCpCategoryModel(); + virtual QList createSettingFormItemData(CpItemDataHelper &itemDataHelper) const; + virtual CpBaseSettingView *createSettingView(const QVariant &hint) const; +}; + +#endif