Removed pure virtual method declarations where it did not make sense for raster layers.

git-svn-id: http://svn.osgeo.org/qgis/trunk@534 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2004-01-20 00:21:18 +00:00
parent 48822a3cfa
commit 27f7e19345

View File

@ -71,12 +71,12 @@ class QgsMapLayer:public QObject
virtual void draw(QPainter *, QgsRect *, QgsCoordinateTransform * cXf);
/*! Identify the feature(s) in this layer that are contained in the search rectangle
*/
virtual void identify(QgsRect *)=0;
virtual void identify(QgsRect *);
/*!Select features on the map canvas by dragging a rectangle*/
virtual void select(QgsRect *, bool lock)=0;
virtual void select(QgsRect *, bool lock);
/*! Display the attribute table for the layer
*/
virtual void table()=0;
virtual void table();
/*! Return the extent of the layer as a QRect
*/
const QgsRect extent();