]> Creatis software - clitk.git/blobdiff - utilities/CxImage/ximajbg.h
cosmetic
[clitk.git] / utilities / CxImage / ximajbg.h
index 137eedfa0d540a42da102211497e215dd302a931..926b591ce560856649798d4318e557c4a13ddcfe 100644 (file)
@@ -1,44 +1,44 @@
-/*\r
- * File:       ximajbg.h\r
- * Purpose:    JBG Image Class Loader and Writer\r
- */\r
-/* ==========================================================\r
- * CxImageJBG (c) 18/Aug/2002 Davide Pizzolato - www.xdp.it\r
- * For conditions of distribution and use, see copyright notice in ximage.h\r
- *\r
- * based on LIBJBG Copyright (c) 2002, Markus Kuhn - All rights reserved.\r
- * ==========================================================\r
- */\r
-#if !defined(__ximaJBG_h)\r
-#define __ximaJBG_h\r
-\r
-#include "ximage.h"\r
-\r
-#if CXIMAGE_SUPPORT_JBG\r
-\r
-extern "C" {\r
-#include "../jbig/jbig.h"\r
-};\r
-\r
-class CxImageJBG: public CxImage\r
-{\r
-public:\r
-       CxImageJBG(): CxImage(CXIMAGE_FORMAT_JBG) {}\r
-\r
-//     bool Load(const TCHAR * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_JBG);}\r
-//     bool Save(const TCHAR * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_JBG);}\r
-       bool Decode(CxFile * hFile);\r
-       bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }\r
-\r
-#if CXIMAGE_SUPPORT_ENCODE\r
-       bool Encode(CxFile * hFile);\r
-       bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }\r
-#endif // CXIMAGE_SUPPORT_ENCODE\r
-protected:\r
-       static void jbig_data_out(BYTE *buffer, unsigned int len, void *file)\r
-                                                       {((CxFile*)file)->Write(buffer,len,1);}\r
-};\r
-\r
-#endif\r
-\r
-#endif\r
+/*
+ * File:       ximajbg.h
+ * Purpose:    JBG Image Class Loader and Writer
+ */
+/* ==========================================================
+ * CxImageJBG (c) 18/Aug/2002 Davide Pizzolato - www.xdp.it
+ * For conditions of distribution and use, see copyright notice in ximage.h
+ *
+ * based on LIBJBG Copyright (c) 2002, Markus Kuhn - All rights reserved.
+ * ==========================================================
+ */
+#if !defined(__ximaJBG_h)
+#define __ximaJBG_h
+
+#include "ximage.h"
+
+#if CXIMAGE_SUPPORT_JBG
+
+extern "C" {
+#include "../jbig/jbig.h"
+};
+
+class CxImageJBG: public CxImage
+{
+public:
+       CxImageJBG(): CxImage(CXIMAGE_FORMAT_JBG) {}
+
+//     bool Load(const TCHAR * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_JBG);}
+//     bool Save(const TCHAR * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_JBG);}
+       bool Decode(CxFile * hFile);
+       bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
+
+#if CXIMAGE_SUPPORT_ENCODE
+       bool Encode(CxFile * hFile);
+       bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
+#endif // CXIMAGE_SUPPORT_ENCODE
+protected:
+       static void jbig_data_out(BYTE *buffer, unsigned int len, void *file)
+                                                       {((CxFile*)file)->Write(buffer,len,1);}
+};
+
+#endif
+
+#endif