r248: msvc changes
[ctsim.git] / include / array2dfile.h
index 9ff8dca58196da35e9f3e7a13a3be0b38f583799..512772d3111418239702bdd59e8ece22dcb623a5 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: array2dfile.h,v 1.4 2000/07/09 08:16:17 kevin Exp $
+**  $Id: array2dfile.h,v 1.9 2000/12/06 15:17:51 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
 #ifndef ARRAY2DFILE_H
 #define ARRAY2DFILE_H
 
-#include <sys/types.h>
-#include <string.h>
+#ifndef MSVC
 #include <unistd.h>
+#endif
+
+#include <sys/types.h>
+#include <cstring>
 #include <string>
 #include <fstream>
 #include <iostream>
@@ -44,9 +47,11 @@ using namespace std;
 class Array2dFileLabel
 {
 public:
-    static const int L_EMPTY = 0;
-    static const int L_HISTORY = 1;
-    static const int L_USER = 2;
+    enum {
+      L_EMPTY = 0,
+      L_HISTORY = 1,
+      L_USER = 2,
+    };
 
     Array2dFileLabel(); 
 
@@ -109,15 +114,17 @@ private:
 class Array2dFile 
 {
 public:
-  static const int PIXEL_INVALID = 0;
-  static const int PIXEL_INT8 = 1;
-  static const int PIXEL_UINT8 = 2;
-  static const int PIXEL_INT16 = 3;
-  static const int PIXEL_UINT16 = 4;
-  static const int PIXEL_INT32 = 5;
-  static const int PIXEL_UINT32 = 6;
-  static const int PIXEL_FLOAT32 = 7;
-  static const int PIXEL_FLOAT64 = 8;
+  enum {
+    PIXEL_INVALID = 0,
+    PIXEL_INT8 = 1,
+    PIXEL_UINT8 = 2,
+    PIXEL_INT16 = 3,
+    PIXEL_UINT16 = 4,
+    PIXEL_INT32 = 5,
+    PIXEL_UINT32 = 6,
+    PIXEL_FLOAT32 = 7,
+    PIXEL_FLOAT64 = 8,
+  };
 
   Array2dFile (int nx, int ny, int pixelSize, int pixelFormat = PIXEL_INVALID);
   Array2dFile (void);
@@ -181,7 +188,7 @@ public:
  protected:
   typedef vector<Array2dFileLabel*> labelContainer;
 
-  static const kuint16 m_signature = ('I'*256+'F');
+  static const kuint16 m_signature;
   kuint16 m_headersize;
   string  m_filename;