Forward declare Image8

This commit is contained in:
Ingo Weyrich
2019-10-29 11:44:00 +01:00
parent 54b6b53e12
commit e92a99350b
13 changed files with 18 additions and 11 deletions

View File

@@ -19,11 +19,9 @@
//
// A class representing a 8 bit rgb image without alpha channel
//
#ifndef _IMAGE8_
#define _IMAGE8_
#pragma once
#include "imageio.h"
#include "rtengine.h"
namespace rtengine
{
@@ -104,4 +102,3 @@ public:
};
}
#endif