1 /*=========================================================================
2 
3   Program: GDCM (Grassroots DICOM). A DICOM library
4 
5   Copyright (c) 2006-2011 Mathieu Malaterre
6   All rights reserved.
7   See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8 
9      This software is distributed WITHOUT ANY WARRANTY; without even
10      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11      PURPOSE.  See the above copyright notice for more information.
12 
13 =========================================================================*/
14 #ifndef GDCM_LJPEG12_H
15 #define GDCM_LJPEG12_H
16 
17 /* Use the ljpeg library configured for gdcm.  */
18 #include "gdcmTypes.h"
19 
20 #ifdef GDCM_USE_SYSTEM_LJPEG
21 extern "C" {
22 # include <ljpeg-62/12/jinclude.h>
23 # include <ljpeg-62/12/jpeglib.h>
24 # include <ljpeg-62/12/jerror.h>
25 }
26 #else
27 extern "C" {
28 #include "gdcmjpeg/12/jinclude.h"
29 #include "gdcmjpeg/12/jpeglib.h"
30 #include "gdcmjpeg/12/jerror.h"
31 }
32 #endif
33 
34 #endif
35