QGIS/qgis/plugins/qgispluginguielement.h
gsherman a4a6ea0a60 mods to plugin api
git-svn-id: http://svn.osgeo.org/qgis/trunk@140 c8812cc2-4d05-0410-92ff-de0c093fc19c
2002-10-14 16:32:21 +00:00

23 lines
574 B
C++

#ifndef QGISPLUGINGUIELEMENT_H
#define QGISPLUGINGUIELEMENT_H
/*! \class QgisPluginGuiElement
* \brief Base class for a GUI element (menu, toolbar, etc) of a plugin
*
* QgsPluginGuiElement provides information about a GUI element that
* will be added to the QGis interface when the plugin is loaded
*/
class QgisPluginGuiElement {
public:
//! Constructor
QgisPluginGuiElement();
//! Type of element (see ELEMENTS enum in qgisplugin.h)
virtual QGIS_GUI_TYPE elementType();
//! destructor
virtual ~QgisPluginGuiElement();
private:
};
#endif // QGISPLUGINGUIELEMENT_H