]> Creatis software - gdcm.git/commitdiff
Adding the empty gdcmRLE.cxx file
authorjpr <jpr>
Wed, 23 Jul 2003 10:19:38 +0000 (10:19 +0000)
committerjpr <jpr>
Wed, 23 Jul 2003 10:19:38 +0000 (10:19 +0000)
src/gdcmRLE.cxx [new file with mode: 0644]

diff --git a/src/gdcmRLE.cxx b/src/gdcmRLE.cxx
new file mode 100644 (file)
index 0000000..cc9fcaa
--- /dev/null
@@ -0,0 +1,41 @@
+#include <stdio.h>
+#include "gdcmFile.h"
+#include "jpeg/libijg8/cdjpeg.h"               /* Common decls for cjpeg/djpeg applications */
+#include "jpeg/libijg8/jversion.h"     /* for version message */
+#include <ctype.h>             /* 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;
+}