Skip to content

Commit

Permalink
Fix python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 15, 2018
1 parent 0bb6a16 commit 3d31d72
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Expand Up @@ -12,6 +12,24 @@



class QgsGeometryCheckFactory /Abstract/
{
%Docstring

A factory for geometry checks.

.. note::

This class is a technology preview and unstable API.

.. versionadded:: 3.4
%End

%TypeHeaderCode
#include "qgsgeometrycheckfactory.h"
%End
public:

virtual ~QgsGeometryCheckFactory();

virtual QgsGeometryCheck *createGeometryCheck( const QgsGeometryCheckContext *context, const QVariantMap &configuration ) const = 0 /Factory/;
Expand Down
Expand Up @@ -39,7 +39,8 @@ struct QgsGeometryCheckContext;
*
* \note This class is a technology preview and unstable API.
* \since QGIS 3.4
*/class ANALYSIS_EXPORT QgsGeometryCheckFactory SIP_ABSTRACT
*/
class ANALYSIS_EXPORT QgsGeometryCheckFactory SIP_ABSTRACT
{
public:

Expand Down

0 comments on commit 3d31d72

Please sign in to comment.