Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmsavefeatures.h 3 : : --------------------- 4 : : begin : July 2020 5 : : copyright : (C) 2020 by Mathieu Pellerin 6 : : email : nirvn dot asia 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 QGSALGORITHMSAVEVECTOR_H 19 : : #define QGSALGORITHMSAVEVECTOR_H 20 : : 21 : : #define SIP_NO_FILE 22 : : 23 : : #include "qgis_sip.h" 24 : : #include "qgsprocessingalgorithm.h" 25 : : 26 : : ///@cond PRIVATE 27 : : 28 : : /** 29 : : * Native save vector algorithm. 30 : : */ 31 : 0 : class QgsSaveFeaturesAlgorithm : public QgsProcessingAlgorithm 32 : : { 33 : : public: 34 : 0 : QgsSaveFeaturesAlgorithm() = default; 35 : : QString name() const override; 36 : : QString displayName() const override; 37 : : QStringList tags() const override; 38 : : QString group() const override; 39 : : QString groupId() const override; 40 : : QString shortHelpString() const override; 41 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 42 : : QgsSaveFeaturesAlgorithm *createInstance() const override SIP_FACTORY; 43 : : 44 : : protected: 45 : : 46 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 47 : : QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 48 : : 49 : : }; 50 : : 51 : : ///@endcond PRIVATE 52 : : 53 : : #endif // QGSALGORITHMSAVEVECTOR_H