Skip to content

Commit 60f80f9

Browse files
committed
Mark QgsProcessingModelAlgorithm as non-stable API
We want to be able to extend this in future without any stable API contract.
1 parent 0a32add commit 60f80f9

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

python/core/processing/qgsprocessingmodelalgorithm.sip

+1
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,7 @@ Copies are protected to avoid slicing
829829

830830

831831

832+
832833
/************************************************************************
833834
* This file has been generated automatically from *
834835
* *

src/core/processing/qgsprocessingmodelalgorithm.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <QFile>
2525
#include <QTextStream>
2626

27+
///@cond NOT_STABLE
28+
2729
QgsProcessingModelAlgorithm::ChildAlgorithm::ChildAlgorithm( const QString &algorithmId )
2830
: mAlgorithmId( algorithmId )
2931
{
@@ -1188,3 +1190,5 @@ bool QgsProcessingModelAlgorithm::ModelParameter::loadVariant( const QVariantMap
11881190
restoreCommonProperties( map );
11891191
return true;
11901192
}
1193+
1194+
///@endcond

src/core/processing/qgsprocessingmodelalgorithm.h

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "qgis.h"
2323
#include "qgsprocessingalgorithm.h"
2424

25+
///@cond NOT_STABLE
2526

2627
/**
2728
* \class QgsProcessingModelAlgorithm
@@ -858,6 +859,8 @@ class CORE_EXPORT QgsProcessingModelAlgorithm : public QgsProcessingAlgorithm
858859
friend class TestQgsProcessing;
859860
};
860861

862+
///@endcond
863+
861864
#endif // QGSPROCESSINGMODELALGORITHM_H
862865

863866

0 commit comments

Comments
 (0)