From 62fb255fdeaf8d3e64b90d4c63fc0fef263e0e08 Mon Sep 17 00:00:00 2001 From: jpr Date: Wed, 23 Jul 2003 10:19:38 +0000 Subject: [PATCH] Adding the empty gdcmRLE.cxx file --- src/gdcmRLE.cxx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/gdcmRLE.cxx diff --git a/src/gdcmRLE.cxx b/src/gdcmRLE.cxx new file mode 100644 index 00000000..cc9fcaa1 --- /dev/null +++ b/src/gdcmRLE.cxx @@ -0,0 +1,41 @@ +#include +#include "gdcmFile.h" +#include "jpeg/libijg8/cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ +#include "jpeg/libijg8/jversion.h" /* for version message */ +#include /* to declare isprint() */ +/* Create the add-on message string table. */ + +#define JMESSAGE(code,string) string , + +static const char * const cdjpeg_message_table[] = { +#include "jpeg/libijg8/cderror.h" + NULL +}; + + /* -------------------------------------------------------------------- */ + // + // RLE LossLess Files + // + /* -------------------------------------------------------------------- */ + +int +gdcmFile::gdcm_read_RLE_file (void * image_buffer) { + + + + + + + + + + + + + + + + + printf("Sorry RLE LossLess File not yet taken into account\n"); + return 0; +} -- 2.45.1