Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmdxfexport.h 3 : : --------------------- 4 : : Date : September 2020 5 : : Copyright : (C) 2020 by Alexander Bruy 6 : : Email : alexander dot bruy at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #ifndef QGSDXFEXPORTALGORITHM_H 17 : : #define QGSDXFEXPORTALGORITHM_H 18 : : 19 : : #define SIP_NO_FILE 20 : : 21 : : #include "qgsprocessingalgorithm.h" 22 : : 23 : : ///@cond PRIVATE 24 : : 25 : 0 : class QgsDxfExportAlgorithm : public QgsProcessingAlgorithm 26 : : { 27 : : public: 28 : 0 : QgsDxfExportAlgorithm() = default; 29 : : QString name() const override; 30 : : QString displayName() const override; 31 : : QStringList tags() const override; 32 : : QString group() const override; 33 : : QString groupId() const override; 34 : : QString shortHelpString() const override; 35 : : void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override; 36 : : QgsDxfExportAlgorithm *createInstance() const override SIP_FACTORY; 37 : : 38 : : protected: 39 : : QVariantMap processAlgorithm( const QVariantMap ¶meters, 40 : : QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override; 41 : : }; 42 : : 43 : : ///@endcond PRIVATE 44 : : 45 : : #endif // QGSDXFEXPORTALGORITHM_H