Skip to content

Commit d230cf2

Browse files
committedApr 30, 2017
Cleanup blacklist
1 parent fb1aec6 commit d230cf2

File tree

3 files changed

+47
-1
lines changed

3 files changed

+47
-1
lines changed
 

‎python/auto_sip.blacklist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ core/qgsruntimeprofiler.sip
8484
core/qgsscalecalculator.sip
8585
core/qgsscaleutils.sip
8686
core/qgssimplifymethod.sip
87-
core/qgssnapper.sip
8887
core/qgssnappingutils.sip
8988
core/qgsspatialindex.sip
9089
core/qgssqlstatement.sip

‎qgsprocessingoutputs.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/***************************************************************************
2+
qgsprocessingoutputs.cpp - QgsProcessingOutputs
3+
4+
---------------------
5+
begin : 30.4.2017
6+
copyright : (C) 2017 by Matthias Kuhn, OPENGIS.ch
7+
email : matthias@opengis.ch
8+
***************************************************************************
9+
* *
10+
* This program is free software; you can redistribute it and/or modify *
11+
* it under the terms of the GNU General Public License as published by *
12+
* the Free Software Foundation; either version 2 of the License, or *
13+
* (at your option) any later version. *
14+
* *
15+
***************************************************************************/
16+
#include "qgsprocessingoutputs.h"
17+
18+
QgsProcessingOutputs::QgsProcessingOutputs()
19+
{
20+
21+
}

‎qgsprocessingoutputs.h

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/***************************************************************************
2+
qgsprocessingoutputs.h - QgsProcessingOutputs
3+
4+
---------------------
5+
begin : 30.4.2017
6+
copyright : (C) 2017 by Matthias Kuhn, OPENGIS.ch
7+
email : matthias@opengis.ch
8+
***************************************************************************
9+
* *
10+
* This program is free software; you can redistribute it and/or modify *
11+
* it under the terms of the GNU General Public License as published by *
12+
* the Free Software Foundation; either version 2 of the License, or *
13+
* (at your option) any later version. *
14+
* *
15+
***************************************************************************/
16+
#ifndef QGSPROCESSINGOUTPUTS_H
17+
#define QGSPROCESSINGOUTPUTS_H
18+
19+
20+
class QgsProcessingOutputs
21+
{
22+
public:
23+
QgsProcessingOutputs();
Code has comments. Press enter to view.
24+
};
25+
26+
#endif // QGSPROCESSINGOUTPUTS_H

0 commit comments

Comments
 (0)
Please sign in to comment.