mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
/***************************************************************************
|
|
qgsalgorithmaspect.h
|
|
------------------------------
|
|
begin : November 2019
|
|
copyright : (C) 2019 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 QGSALGORITHMASPECT_H
|
|
#define QGSALGORITHMASPECT_H
|
|
|
|
#define SIP_NO_FILE
|
|
|
|
#include "qgis_sip.h"
|
|
#include "qgsprocessingalgorithm.h"
|
|
|
|
///@cond PRIVATE
|
|
|
|
/**
|
|
* Native aspect algorithm.
|
|
*/
|
|
class QgsAspectAlgorithm : public QgsProcessingAlgorithm
|
|
{
|
|
public:
|
|
QgsAspectAlgorithm() = default;
|
|
void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
|
|
QString name() const override;
|
|
QString displayName() const override;
|
|
QStringList tags() const override;
|
|
QString group() const override;
|
|
QString groupId() const override;
|
|
QString shortHelpString() const override;
|
|
QString shortDescription() const override;
|
|
QgsAspectAlgorithm *createInstance() const override SIP_FACTORY;
|
|
|
|
protected:
|
|
QVariantMap processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
};
|
|
|
|
///@endcond PRIVATE
|
|
|
|
#endif // QGSALGORITHMASPECT_H
|