mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
298 B
C++
14 lines
298 B
C++
#ifndef qgisplugin_h
|
|
#define qgisplugin_h
|
|
#include <qstring.h>
|
|
|
|
class QgisPlugin{
|
|
public:
|
|
virtual QString pluginName() = 0;
|
|
virtual QString pluginVersion() =0;
|
|
virtual QString pluginDescription() = 0;
|
|
};
|
|
typedef QgisPlugin* create_t();
|
|
typedef void unload_t(QgisPlugin *);
|
|
#endif //qgisplugin_h
|