mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
26 lines
1.0 KiB
C++
26 lines
1.0 KiB
C++
/***************************************************************************
|
|
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
|