Index: trunk/psLib/src/sysUtils/psType.h
===================================================================
--- trunk/psLib/src/sysUtils/psType.h	(revision 830)
+++ trunk/psLib/src/sysUtils/psType.h	(revision 831)
@@ -3,23 +3,11 @@
  *  @brief Contains support for basic types
  *
- *  This file defines datatypes which include:
- *      char
- *      short
- *      int
- *      long
- *      unsigned char
- *      unsigned short
- *      unsigned int
- *      unsigned long
- *      float
- *      double
- *      complex float
- *      void **
+ *  This file defines common datatypes used throughout psLib.
  *
  *  @author Robert DeSonia, MHPCC
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-05-29 01:10:22 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-02 23:29:14 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -59,19 +47,4 @@
 
 typedef enum {
-    PS_TYPE_INT8             = 0x0101,  ///< Character.
-    PS_TYPE_INT16            = 0x0102,  ///< Short integer.
-    PS_TYPE_INT32            = 0x0104,  ///< Integer.
-    PS_TYPE_INT64            = 0x0108,  ///< Long integer.
-    PS_TYPE_UINT8            = 0x0301,  ///< Unsigned character.
-    PS_TYPE_UINT16           = 0x0302,  ///< Unsigned short integer.
-    PS_TYPE_UINT32           = 0x0304,  ///< Unsigned integer.
-    PS_TYPE_UINT64           = 0x0308,  ///< Unsigned long integer.
-    PS_TYPE_FLOAT            = 0x0404,  ///< Single-precision Floating point.
-    PS_TYPE_DOUBLE           = 0x0408,  ///< Double-precision floating point.
-    PS_TYPE_COMPLEX_FLOAT    = 0x0808,  ///< Complex numbers consisting of single-precision floating point.
-    PS_TYPE_COMPLEX_DOUBLE   = 0x0810,  ///< Complex numbers consisting of double-precision floating point.
-    PS_TYPE_OTHER            = 0x0000,  ///< Something else that's not supported for arithmetic.
-
-    // Abbreviated versions of the above types
     PS_TYPE_S8               = 0x0101,  ///< Character.
     PS_TYPE_S16              = 0x0102,  ///< Short integer.
@@ -87,5 +60,4 @@
     PS_TYPE_C64              = 0x0810,  ///< Complex numbers consisting of double-precision floating point.
     PS_TYPE_PTR              = 0x0000   ///< Something else that's not supported for arithmetic.
-
 } psElemType;
 
