#ifndef GO4PLUGIN_H #define GO4PLUGIN_H #include #include class Go4WidgetPlugins: public QObject, public QDesignerCustomWidgetCollectionInterface { Q_OBJECT Q_INTERFACES(QDesignerCustomWidgetCollectionInterface) public: Go4WidgetPlugins(QObject *parent = 0); virtual QList customWidgets() const; private: QList widgets; }; #endif