QGIS API Documentation  3.0.2-Girona (307d082)
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"
24 
25 //
26 // Output definitions
27 //
28 
39 class CORE_EXPORT QgsProcessing
40 {
41 
42  public:
43 
46  {
47  TypeMapLayer = -2,
48  TypeVectorAnyGeometry = -1,
49  TypeVectorPoint = 0,
50  TypeVectorLine = 1,
51  TypeVectorPolygon = 2,
52  TypeRaster = 3,
53  TypeFile = 4,
54  TypeVector = 5,
55  };
56 
57 
58 
59 };
60 
61 #endif // QGSPROCESSING_H
Contains enumerations and other constants for use in processing algorithms and parameters.
Definition: qgsprocessing.h:39
SourceType
Data source types enum.
Definition: qgsprocessing.h:45