Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsnativealgorithms.h 3 : : --------------------- 4 : : begin : April 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #ifndef QGSNATIVEALGORITHMS_H 19 : : #define QGSNATIVEALGORITHMS_H 20 : : 21 : : #include "qgis_analysis.h" 22 : : #include "qgis_sip.h" 23 : : #include "qgsprocessingprovider.h" 24 : : 25 : : /** 26 : : * \ingroup analysis 27 : : * \class QgsNativeAlgorithms 28 : : * \brief Native c++ processing algorithm provider. 29 : : * \since QGIS 3.0 30 : : */ 31 : : class ANALYSIS_EXPORT QgsNativeAlgorithms: public QgsProcessingProvider 32 : : { 33 : 0 : Q_OBJECT 34 : : 35 : : public: 36 : : 37 : : /** 38 : : * Constructor for QgsNativeAlgorithms. 39 : : */ 40 : : QgsNativeAlgorithms( QObject *parent = nullptr ); 41 : : 42 : : QIcon icon() const override; 43 : : QString svgIconPath() const override; 44 : : QString id() const override; 45 : : QString helpId() const override; 46 : : QString name() const override; 47 : : bool supportsNonFileBasedOutput() const override; 48 : : 49 : : protected: 50 : : 51 : : void loadAlgorithms() override; 52 : : 53 : : }; 54 : : 55 : : #endif // QGSNATIVEALGORITHMS_H 56 : : 57 : :