mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
16 lines
333 B
Plaintext
16 lines
333 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();
|
|
|
|
void setExtent(const QgsRectangle& extent);
|
|
};
|