]> Creatis software - clitk.git/blobdiff - utilities/CxImage/ximaska.h
cosmetic
[clitk.git] / utilities / CxImage / ximaska.h
index f2facc900fb5bcccbd78f973eb5082a8fe1629f0..381acf58f23d9836d1aaf2f930f0487831dfba68 100644 (file)
@@ -1,44 +1,44 @@
-/*\r
- * File:       ximaska.h\r
- * Purpose:    SKA Image Class Loader and Writer\r
- */\r
-/* ==========================================================\r
- * CxImageSKA (c) 25/Sep/2007 Davide Pizzolato - www.xdp.it\r
- * For conditions of distribution and use, see copyright notice in ximage.h\r
- * ==========================================================\r
- */\r
-#if !defined(__ximaSKA_h)\r
-#define __ximaSKA_h\r
-\r
-#include "ximage.h"\r
-\r
-#if CXIMAGE_SUPPORT_SKA\r
-\r
-class CxImageSKA: public CxImage\r
-{\r
-#pragma pack(1)\r
-       typedef struct tagSkaHeader {\r
-    unsigned short  Width;\r
-    unsigned short  Height;\r
-    BYTE  BppExp;\r
-    DWORD dwUnknown;\r
-} SKAHEADER;\r
-#pragma pack()\r
-\r
-public:\r
-       CxImageSKA(): CxImage(CXIMAGE_FORMAT_SKA) {}\r
-\r
-//     bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_ICO);}\r
-//     bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_ICO);}\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
-};\r
-\r
-#endif\r
-\r
-#endif\r
+/*
+ * File:       ximaska.h
+ * Purpose:    SKA Image Class Loader and Writer
+ */
+/* ==========================================================
+ * CxImageSKA (c) 25/Sep/2007 Davide Pizzolato - www.xdp.it
+ * For conditions of distribution and use, see copyright notice in ximage.h
+ * ==========================================================
+ */
+#if !defined(__ximaSKA_h)
+#define __ximaSKA_h
+
+#include "ximage.h"
+
+#if CXIMAGE_SUPPORT_SKA
+
+class CxImageSKA: public CxImage
+{
+#pragma pack(1)
+       typedef struct tagSkaHeader {
+    unsigned short  Width;
+    unsigned short  Height;
+    BYTE  BppExp;
+    DWORD dwUnknown;
+} SKAHEADER;
+#pragma pack()
+
+public:
+       CxImageSKA(): CxImage(CXIMAGE_FORMAT_SKA) {}
+
+//     bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_ICO);}
+//     bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_ICO);}
+       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
+};
+
+#endif
+
+#endif