mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
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();
|
||
|
|
||
|
};
|