#ifndef MAP_DESIGNERPLUGIN_H #define MAP_DESIGNERPLUGIN_H #include #include class MapDesignerPlugin : public QObject , public QDesignerCustomWidgetCollectionInterface { Q_OBJECT Q_PLUGIN_METADATA(IID "qad.map") Q_INTERFACES(QDesignerCustomWidgetCollectionInterface) public: MapDesignerPlugin(QObject * parent = 0); virtual QList customWidgets() const; private: QList m_widgets; }; #endif