mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-06 00:03:16 -05:00
51 lines
2.2 KiB
C++
51 lines
2.2 KiB
C++
/***************************************************************************
|
|
qgsalgorithmmultidifference.cpp
|
|
------------------
|
|
begin : December 2021
|
|
copyright : (C) 2021 by Alexander Bruy
|
|
email : alexander dot bruy at gmail dot com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef QGSALGORITHMMULTIDIFFERENCE_H
|
|
#define QGSALGORITHMMULTIDIFFERENCE_H
|
|
|
|
#define SIP_NO_FILE
|
|
|
|
#include "qgsprocessingalgorithm.h"
|
|
#include "qgsapplication.h"
|
|
|
|
///@cond PRIVATE
|
|
|
|
class QgsMultiDifferenceAlgorithm : public QgsProcessingAlgorithm
|
|
{
|
|
public:
|
|
QgsMultiDifferenceAlgorithm() = default;
|
|
QIcon icon() const override { return QgsApplication::getThemeIcon( QStringLiteral( "/algorithms/mAlgorithmDifference.svg" ) ); }
|
|
QString svgIconPath() const override { return QgsApplication::iconPath( QStringLiteral( "/algorithms/mAlgorithmDifference.svg" ) ); }
|
|
QString name() const override;
|
|
QString displayName() const override;
|
|
QStringList tags() const override;
|
|
QString group() const override;
|
|
QString groupId() const override;
|
|
QString shortDescription() const override;
|
|
QString shortHelpString() const override;
|
|
|
|
protected:
|
|
QgsProcessingAlgorithm *createInstance() const override;
|
|
void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
|
|
QVariantMap processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
};
|
|
|
|
///@endcond PRIVATE
|
|
|
|
#endif // QGSALGORITHMMULTIDIFFERENCE_H
|