]> Creatis software - gdcm.git/blob - src/gdcmJpeg2000.cxx
some cosmetic cleanup so that compilation : -W -Wall -Werror can pass.
[gdcm.git] / src / gdcmJpeg2000.cxx
1 // gdcmJpeg2000.cxx
2 //-----------------------------------------------------------------------------
3 #include <stdio.h>
4 #include "gdcmFile.h"
5
6 //-----------------------------------------------------------------------------
7  /**
8  * \ingroup gdcmFile
9  * \brief   routine for JPEG decompression 
10  * @param fp pointer to an already open file descriptor 
11  *                      JPEG2000 encoded image
12  * @param image_buffer to receive uncompressed pixels
13  * @return 1 on success, 0 on error
14  * @warning : not yet made
15  */
16
17 bool gdcmFile::gdcm_read_JPEG2000_file (FILE *fp,void * image_buffer) {
18    (void)fp;    //FIXME
19          (void)image_buffer;    //FIXME
20    printf("Sorry JPEG 2000 File not yet taken into account\n");
21    return false;
22 }
23
24 //-----------------------------------------------------------------------------
25