/*************************************************************************** qgspluginmetadata.h - Metadata class for describing a loaded plugin. ------------------- begin : Fri Feb 6 2004 copyright : (C) 2004 by Gary E.Sherman email : sherman at mrcc.com ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ /* $Id: qgspluginmetadata.h,v 1.1 2004/02/07 04:13:18 gsherman Exp $ */ #ifndef QGSPLUGINMETADATA_H #define QGSPLUGINMETADATA_H class QgisPlugin; class QString; /** * \class QgsPluginMetadata * \brief Stores information about a loaded plugin, including a pointer to * the instantiated object. This allows the plugin manager to tell the plugin to * unload itself. */ class QgsPluginMetadata { public: QgsPluginMetadata(QString _libraryPath, QString _name, QgisPlugin *_plugin); QString name(); QString library(); QgisPlugin *plugin(); private: QString m_name; QString libraryPath; QgisPlugin *m_plugin; }; #endif //QGSPLUGINMETADATA_H