Quantum GIS API Documentation  1.7.4
src/core/qgspluginlayer.cpp
Go to the documentation of this file.
00001 #include "qgspluginlayer.h"
00002 
00003 QgsPluginLayer::QgsPluginLayer( QString layerType, QString layerName )
00004     : QgsMapLayer( PluginLayer, layerName ), mPluginLayerType( layerType )
00005 {
00006 }
00007 
00008 QString QgsPluginLayer::pluginLayerType()
00009 {
00010   return mPluginLayerType;
00011 }
00012 
00013 void QgsPluginLayer::setExtent( const QgsRectangle & extent )
00014 {
00015   mLayerExtent = extent;
00016 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines