Cleanup blacklist

This commit is contained in:
Matthias Kuhn 2017-04-30 15:05:48 +02:00
parent fb1aec61ba
commit d230cf2e4f
3 changed files with 47 additions and 1 deletions

View File

@ -84,7 +84,6 @@ core/qgsruntimeprofiler.sip
core/qgsscalecalculator.sip
core/qgsscaleutils.sip
core/qgssimplifymethod.sip
core/qgssnapper.sip
core/qgssnappingutils.sip
core/qgsspatialindex.sip
core/qgssqlstatement.sip

21
qgsprocessingoutputs.cpp Normal file
View File

@ -0,0 +1,21 @@
/***************************************************************************
qgsprocessingoutputs.cpp - QgsProcessingOutputs
---------------------
begin : 30.4.2017
copyright : (C) 2017 by Matthias Kuhn, OPENGIS.ch
email : matthias@opengis.ch
***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "qgsprocessingoutputs.h"
QgsProcessingOutputs::QgsProcessingOutputs()
{
}

26
qgsprocessingoutputs.h Normal file
View File

@ -0,0 +1,26 @@
/***************************************************************************
qgsprocessingoutputs.h - QgsProcessingOutputs
---------------------
begin : 30.4.2017
copyright : (C) 2017 by Matthias Kuhn, OPENGIS.ch
email : matthias@opengis.ch
***************************************************************************
* *
* 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 QGSPROCESSINGOUTPUTS_H
#define QGSPROCESSINGOUTPUTS_H
class QgsProcessingOutputs
{
public:
QgsProcessingOutputs();
};
#endif // QGSPROCESSINGOUTPUTS_H