Skip to content

Commit

Permalink
Mark QgsProcessingModelAlgorithm as non-stable API
Browse files Browse the repository at this point in the history
We want to be able to extend this in future without any
stable API contract.
  • Loading branch information
nyalldawson committed Jun 26, 2017
1 parent 0a32add commit 60f80f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/core/processing/qgsprocessingmodelalgorithm.sip
Expand Up @@ -829,6 +829,7 @@ Copies are protected to avoid slicing




/************************************************************************
* This file has been generated automatically from *
* *
Expand Down
4 changes: 4 additions & 0 deletions src/core/processing/qgsprocessingmodelalgorithm.cpp
Expand Up @@ -24,6 +24,8 @@
#include <QFile>
#include <QTextStream>

///@cond NOT_STABLE

QgsProcessingModelAlgorithm::ChildAlgorithm::ChildAlgorithm( const QString &algorithmId )
: mAlgorithmId( algorithmId )
{
Expand Down Expand Up @@ -1188,3 +1190,5 @@ bool QgsProcessingModelAlgorithm::ModelParameter::loadVariant( const QVariantMap
restoreCommonProperties( map );
return true;
}

///@endcond
3 changes: 3 additions & 0 deletions src/core/processing/qgsprocessingmodelalgorithm.h
Expand Up @@ -22,6 +22,7 @@
#include "qgis.h"
#include "qgsprocessingalgorithm.h"

///@cond NOT_STABLE

/**
* \class QgsProcessingModelAlgorithm
Expand Down Expand Up @@ -858,6 +859,8 @@ class CORE_EXPORT QgsProcessingModelAlgorithm : public QgsProcessingAlgorithm
friend class TestQgsProcessing;
};

///@endcond

#endif // QGSPROCESSINGMODELALGORITHM_H


0 comments on commit 60f80f9

Please sign in to comment.