mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Some parts modified to make plugin layers easier to use and more robust. git-svn-id: http://svn.osgeo.org/qgis/trunk@12834 c8812cc2-4d05-0410-92ff-de0c093fc19c
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
|
|
class QgsPluginLayer : QgsMapLayer
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgspluginlayer.h"
|
|
%End
|
|
|
|
public:
|
|
QgsPluginLayer(QString layerType, QString layerName = QString());
|
|
|
|
/** return plugin layer type (the same as used in QgsPluginLayerRegistry) */
|
|
QString pluginLayerType();
|
|
|
|
};
|