Mercurial > hg > orthanc
comparison Core/Images/JpegReader.h @ 2379:4900688827a8
reorganization in CMake
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 28 Aug 2017 18:07:03 +0200 |
parents | a3a65de1840f |
children | 878b59270859 |
comparison
equal
deleted
inserted
replaced
2378:116ade1eff82 | 2379:4900688827a8 |
---|---|
31 **/ | 31 **/ |
32 | 32 |
33 | 33 |
34 #pragma once | 34 #pragma once |
35 | 35 |
36 #if !defined(ORTHANC_SANDBOXED) | |
37 # error The macro ORTHANC_SANDBOXED must be defined | |
38 #endif | |
39 | |
40 #if !defined(ORTHANC_ENABLE_JPEG) | |
41 # error The macro ORTHANC_ENABLE_JPEG must be defined | |
42 #endif | |
43 | |
44 #if ORTHANC_ENABLE_JPEG != 1 | |
45 # error JPEG support must be enabled to include this file | |
46 #endif | |
47 | |
36 #include "ImageAccessor.h" | 48 #include "ImageAccessor.h" |
37 | 49 |
38 #include <string> | 50 #include <string> |
39 #include <boost/noncopyable.hpp> | 51 #include <boost/noncopyable.hpp> |
40 | |
41 #if !defined(ORTHANC_SANDBOXED) | |
42 # error The macro ORTHANC_SANDBOXED must be defined | |
43 #endif | |
44 | 52 |
45 namespace Orthanc | 53 namespace Orthanc |
46 { | 54 { |
47 class JpegReader : | 55 class JpegReader : |
48 public ImageAccessor, | 56 public ImageAccessor, |