Fix documentation test failure

This commit is contained in:
Nyall Dawson 2015-12-11 19:30:15 +11:00
parent 233f67b419
commit c176e3f41e
2 changed files with 10 additions and 0 deletions

View File

@ -167,6 +167,11 @@ class QgsAbstractGeometryV2
virtual int vertexCount(int part = 0, int ring = 0) const = 0; virtual int vertexCount(int part = 0, int ring = 0) const = 0;
virtual int ringCount(int part = 0) const = 0; virtual int ringCount(int part = 0) const = 0;
/** Returns count of parts contained in the geometry.
* @see vertexCount
* @see ringCount
*/
virtual int partCount() const = 0; virtual int partCount() const = 0;
/** Adds a z-dimension to the geometry, initialized to a preset value. /** Adds a z-dimension to the geometry, initialized to a preset value.

View File

@ -304,6 +304,11 @@ class CORE_EXPORT QgsAbstractGeometryV2
virtual int vertexCount( int part = 0, int ring = 0 ) const = 0; virtual int vertexCount( int part = 0, int ring = 0 ) const = 0;
virtual int ringCount( int part = 0 ) const = 0; virtual int ringCount( int part = 0 ) const = 0;
/** Returns count of parts contained in the geometry.
* @see vertexCount
* @see ringCount
*/
virtual int partCount() const = 0; virtual int partCount() const = 0;
/** Adds a z-dimension to the geometry, initialized to a preset value. /** Adds a z-dimension to the geometry, initialized to a preset value.