Fix python bindings

This commit is contained in:
Matthias Kuhn 2018-10-15 16:05:59 +02:00
parent 0bb6a16145
commit 3d31d72442
No known key found for this signature in database
GPG Key ID: 7A7F1A1C90C3E6A7
2 changed files with 20 additions and 1 deletions

View File

@ -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/;

View File

@ -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: