~ubuntu-branches/ubuntu/quantal/qgis/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/***************************************************************************
                    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