QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsnativealgorithms.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsnativealgorithms.h
3 ---------------------
4 begin : April 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson 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 QGSNATIVEALGORITHMS_H
19#define QGSNATIVEALGORITHMS_H
20
21#include "qgis_analysis.h"
22#include "qgis_sip.h"
24
30class ANALYSIS_EXPORT QgsNativeAlgorithms: public QgsProcessingProvider
31{
32 Q_OBJECT
33
34 public:
35
39 QgsNativeAlgorithms( QObject *parent = nullptr );
40
41 QIcon icon() const override;
42 QString svgIconPath() const override;
43 QString id() const override;
44 QString helpId() const override;
45 QString name() const override;
46 bool supportsNonFileBasedOutput() const override;
48
49 protected:
50
51 void loadAlgorithms() override;
52
53};
54
55#endif // QGSNATIVEALGORITHMS_H
56
57
QFlags< ProcessingProviderFlag > ProcessingProviderFlags
Flags indicating how and when an processing provider operates and should be exposed to users.
Definition: qgis.h:2897
Native c++ processing algorithm provider.
void loadAlgorithms() override
Loads all algorithms belonging to this provider.
QString helpId() const override
Returns the provider help id string, used for creating QgsHelp urls for algorithms belong to this pro...
QString id() const override
Returns the unique provider id, used for identifying the provider.
bool supportsNonFileBasedOutput() const override
Returns true if the provider supports non-file based outputs (such as memory layers or direct databas...
QString svgIconPath() const override
Returns a path to an SVG version of the provider's icon.
QString name() const override
Returns the provider name, which is used to describe the provider within the GUI.
QIcon icon() const override
Returns an icon for the provider.
QgsNativeAlgorithms(QObject *parent=nullptr)
Constructor for QgsNativeAlgorithms.
Qgis::ProcessingProviderFlags flags() const override
Returns the flags indicating how and when the provider operates and should be exposed to users.
Abstract base class for processing providers.