]> Creatis software - gdcm.git/blob - src/gdcmJpeg2000.cxx
* src/*.cxx : added pragma disable 4786/4251 to get rid of ~4300 warning
[gdcm.git] / src / gdcmJpeg2000.cxx
1 //This is needed when compiling in debug mode
2 #ifdef _MSC_VER
3 // 'identifier' : class 'type' needs to have dll-interface to be used by
4 // clients of class 'type2'
5 #pragma warning ( disable : 4251 )
6 // 'identifier' : identifier was truncated to 'number' characters in the
7 // debug information
8 #pragma warning ( disable : 4786 )
9 #endif //_MSC_VER
10  
11  
12  /* -------------------------------------------------------------------- */
13  //
14  // JPEG 2000 Files
15  //
16  /* -------------------------------------------------------------------- */
17
18 #include <stdio.h>
19 #include "gdcmFile.h"
20
21 int
22 gdcmFile::gdcm_read_JPEG2000_file (void * image_buffer) {
23
24
25    printf("Sorry JPEG 2000 File not yet taken into account\n");
26    return 0;
27 }
28
29