Decouple rtengine/ from rtgui/edit.h

This commit is contained in:
Flössie
2019-03-21 20:50:43 +01:00
parent d059caa7de
commit 84ce72841e
7 changed files with 47 additions and 25 deletions

View File

@@ -16,17 +16,22 @@
* You should have received a copy of the GNU General Public License
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PIPETTEBUFFER_H_
#define _PIPETTEBUFFER_H_
#pragma once
#include "../rtgui/edit.h"
#include "array2D.h"
#include "iimage.h"
#include "coord.h"
#include "iimage.h"
class EditDataProvider;
class EditSubscriber;
enum EditUniqueID : int;
namespace rtengine
{
class Imagefloat;
/// @brief Structure that contains information about and pointers to the Edit buffer
class PipetteBuffer
{
@@ -92,5 +97,3 @@ public:
};
}
#endif