comparison Core/Images/PamReader.h @ 2702:be6d7acf4e94

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Jul 2018 18:50:36 +0200
parents 52217dc47a4e
children 5c18a22cb981
comparison
equal deleted inserted replaced
2699:52217dc47a4e 2702:be6d7acf4e94
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. 30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 **/ 31 **/
32 32
33 33
34 #pragma once 34 #pragma once
35
36 #if !defined(ORTHANC_ENABLE_PNG)
37 # error The macro ORTHANC_ENABLE_PNG must be defined
38 #endif
39
40 #if ORTHANC_ENABLE_PNG != 1
41 # error PNG support must be enabled to include this file
42 #endif
43 35
44 #include "ImageAccessor.h" 36 #include "ImageAccessor.h"
45 37
46 #include "../Enumerations.h" 38 #include "../Enumerations.h"
47 39