Skip to content

Commit

Permalink
Add \note not available in python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 30, 2018
1 parent f0ddef4 commit bd5703c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/analysis/vector/geometry_checker/qgsfeaturepool.h
Expand Up @@ -61,12 +61,16 @@ class ANALYSIS_EXPORT QgsFeaturePool : public QgsFeatureSink SIP_ABSTRACT
/**
* Returns the complete set of feature ids in this pool.
* Note that this concerns the features governed by this pool, which are not necessarily all cached.
*
* \note not available in Python bindings
*/
QgsFeatureIds allFeatureIds() const SIP_SKIP;

/**
* Get all feature ids in the bounding box \a rect. It will use a spatial index to
* determine the ids.
*
* \note not available in Python bindings
*/
QgsFeatureIds getIntersects( const QgsRectangle &rect ) const SIP_SKIP;

Expand All @@ -84,7 +88,7 @@ class ANALYSIS_EXPORT QgsFeaturePool : public QgsFeatureSink SIP_ABSTRACT
* the pointer will need to be checked for validity
* before usage.
*
* \note Not available in Python
* \note not available in Python bindings
*/
QPointer<QgsVectorLayer> layerPtr() const SIP_SKIP;

Expand Down Expand Up @@ -127,6 +131,8 @@ class ANALYSIS_EXPORT QgsFeaturePool : public QgsFeatureSink SIP_ABSTRACT
* Set all the feature ids governed by this feature pool.
* Should be called by subclasses constructor and whenever
* they insert a new feature.
*
* \note not available in Python bindings
*/
void setFeatureIds( const QgsFeatureIds &ids ) SIP_SKIP;

Expand Down

0 comments on commit bd5703c

Please sign in to comment.