reduce include dependecies

This commit is contained in:
Ingo Weyrich
2020-01-17 23:56:17 +01:00
parent d82ea3af02
commit 54d8efc5f6
4 changed files with 6 additions and 2 deletions

View File

@@ -29,6 +29,7 @@
* available at https://arxiv.org/abs/1505.00996 * available at https://arxiv.org/abs/1505.00996
*/ */
#include "array2D.h"
#include "boxblur.h" #include "boxblur.h"
#include "guidedfilter.h" #include "guidedfilter.h"
#include "imagefloat.h" #include "imagefloat.h"

View File

@@ -25,7 +25,6 @@
#include "coord2d.h" #include "coord2d.h"
#include "imagedata.h" #include "imagedata.h"
#include "LUT.h"
#include "rtengine.h" #include "rtengine.h"
template<typename T> template<typename T>

View File

@@ -32,6 +32,7 @@
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include "array2D.h"
#include "color.h" #include "color.h"
#include "guidedfilter.h" #include "guidedfilter.h"
#include "iccstore.h" #include "iccstore.h"

View File

@@ -20,9 +20,12 @@
#pragma once #pragma once
#include "array2D.h"
#include "rt_math.h" #include "rt_math.h"
template<typename T>
class array2D;
namespace rtengine namespace rtengine
{ {