QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsprocessing.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprocessing.h
3  ---------------
4  begin : July 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 QGSPROCESSING_H
19 #define QGSPROCESSING_H
20 
21 #include "qgis_core.h"
22 #include "qgis.h"
23 
24 //
25 // Output definitions
26 //
27 
38 class CORE_EXPORT QgsProcessing
39 {
40 
41  public:
42 
45  {
46  TypeMapLayer = -2,
47  TypeVectorAnyGeometry = -1,
48  TypeVectorPoint = 0,
49  TypeVectorLine = 1,
50  TypeVectorPolygon = 2,
51  TypeRaster = 3,
52  TypeFile = 4,
53  TypeVector = 5,
54  };
55 
56 
57 
58 };
59 
60 #endif // QGSPROCESSING_H
Contains enumerations and other constants for use in processing algorithms and parameters.
Definition: qgsprocessing.h:38
SourceType
Data source types enum.
Definition: qgsprocessing.h:44