mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
This PR continues the work started in PR #8951. This commit replaces occurences of #include "qgis.h" by #include "qgis_sip.h", where possible = when files only depends on SIP_XXX features.
69 lines
2.5 KiB
C++
69 lines
2.5 KiB
C++
/***************************************************************************
|
|
qgsalgorithmremoveduplicatevertices.h
|
|
---------------------
|
|
begin : November 2017
|
|
copyright : (C) 2017 by Nyall Dawson
|
|
email : nyall dot dawson 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 QGSALGORITHMREMOVEDUPLICATEVERTICES_H
|
|
#define QGSALGORITHMREMOVEDUPLICATEVERTICES_H
|
|
|
|
#define SIP_NO_FILE
|
|
|
|
#include "qgis_sip.h"
|
|
#include "qgsprocessingalgorithm.h"
|
|
|
|
///@cond PRIVATE
|
|
|
|
/**
|
|
* Native remove duplicate nodes algorithm.
|
|
*/
|
|
class QgsAlgorithmRemoveDuplicateVertices : public QgsProcessingFeatureBasedAlgorithm
|
|
{
|
|
|
|
public:
|
|
|
|
QgsAlgorithmRemoveDuplicateVertices() = default;
|
|
QString name() const override;
|
|
QString displayName() const override;
|
|
QStringList tags() const override;
|
|
QString group() const override;
|
|
QString groupId() const override;
|
|
QString shortHelpString() const override;
|
|
QgsAlgorithmRemoveDuplicateVertices *createInstance() const override SIP_FACTORY;
|
|
void initParameters( const QVariantMap &configuration = QVariantMap() ) override;
|
|
|
|
protected:
|
|
QString outputName() const override;
|
|
QgsProcessingFeatureSource::Flag sourceFlags() const override;
|
|
bool prepareAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) override;
|
|
QgsFeatureList processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback ) override;
|
|
|
|
private:
|
|
|
|
double mTolerance = 1.0;
|
|
bool mDynamicTolerance = false;
|
|
QgsProperty mToleranceProperty;
|
|
|
|
bool mUseZValues = false;
|
|
bool mDynamicUseZ = false;
|
|
QgsProperty mUseZProperty;
|
|
};
|
|
|
|
|
|
///@endcond PRIVATE
|
|
|
|
#endif // QGSALGORITHMREMOVEDUPLICATEVERTICES_H
|
|
|
|
|