1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-04-26 00:02:43 -04:00
2016-08-10 12:12:28 +02:00

18 lines
263 B
Plaintext

class QgsSurface: public QgsAbstractGeometry
{
%TypeHeaderCode
#include <qgssurface.h>
%End
public:
virtual QgsPolygonV2* surfaceToPolygon() const = 0;
virtual QgsRectangle boundingBox() const;
protected:
virtual void clearCache() const;
};