controlpanelui/src/cpcategorymodel/tsrc/testpluginsforcpcategorymodel/firstpluginforcpcategorymodel/src/firstpluginforcpcategorymodel.h
author hgs
Wed, 29 Sep 2010 10:09:58 +0800
changeset 40 593f946f4fec
child 43 aae8b749572d
permissions -rw-r--r--
201037_2

#ifndef FIRSTPLUGINFORCPCATEGORYMODEL_H
#define FIRSTPLUGINFORCPCATEGORYMODEL_H

#include <qobject.h>
#include <cpplugininterface.h>
#include <cplauncherinterface.h>

class FirstPluginForCpCategoryModel : public QObject, public CpPluginInterface, public CpLauncherInterface
{
    Q_OBJECT
    Q_INTERFACES(CpPluginInterface)
    Q_INTERFACES(CpLauncherInterface)
public:
    FirstPluginForCpCategoryModel();
    virtual ~FirstPluginForCpCategoryModel();
    virtual QList<CpSettingFormItemData*> createSettingFormItemData(CpItemDataHelper &itemDataHelper) const;
    virtual CpBaseSettingView *createSettingView(const QVariant &hint) const;
};

#endif