class QgsPolygonV2: public QgsCurvePolygon { %TypeHeaderCode #include %End public: QgsPolygonV2(); bool operator==( const QgsPolygonV2& other ) const; bool operator!=( const QgsPolygonV2& other ) const; virtual QString geometryType() const; virtual QgsPolygonV2* clone() const; void clear(); virtual bool fromWkb( QgsConstWkbPtr wkb ); // inherited: bool fromWkt( const QString &wkt ); int wkbSize() const; unsigned char* asWkb( int& binarySize ) const; // inherited: QString asWkt( int precision = 17 ) const; // inherited: QDomElement asGML2( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const; // inherited: QDomElement asGML3( QDomDocument& doc, int precision = 17, const QString& ns = "gml" ) const; // inherited: QString asJSON( int precision = 17 ) const; QgsPolygonV2* surfaceToPolygon() const; /** Returns the geometry converted to the more generic curve type QgsCurvePolygon @return the converted geometry. Caller takes ownership*/ QgsAbstractGeometry* toCurveType() const /Factory/; void addInteriorRing( QgsCurve* ring /Transfer/ ); //overridden to handle LineString25D rings virtual void setExteriorRing( QgsCurve* ring /Transfer/ ); virtual QgsAbstractGeometry* boundary() const /Factory/; };