Index: trunk/psLib/src/fileUtils/psFits.h
===================================================================
--- trunk/psLib/src/fileUtils/psFits.h	(revision 3476)
+++ trunk/psLib/src/fileUtils/psFits.h	(revision 3500)
@@ -7,6 +7,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-03-22 21:52:49 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-24 23:52:25 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -63,5 +63,5 @@
  */
 bool psFitsMoveExtName(
-    psFits* fits,                      ///< the psFits object to move
+    const psFits* fits,                ///< the psFits object to move
     const char* extname                ///< the extension name
 );
@@ -72,5 +72,5 @@
  */
 bool psFitsMoveExtNum(
-    psFits* fits,                      ///< the psFits object to move
+    const psFits* fits,                ///< the psFits object to move
     int extnum,                        ///< the extension number to move to (zero is primary HDU)
     bool relative                      ///< if true, extnum is a relative number to the current position
@@ -83,5 +83,5 @@
  */
 int psFitsGetExtNum(
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -92,5 +92,5 @@
  */
 char* psFitsGetExtName(
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -100,5 +100,5 @@
  */
 bool psFitsSetExtName(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     const char* name                   ///< the extension name
 );
@@ -110,5 +110,5 @@
  */
 int psFitsGetSize(
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -119,5 +119,5 @@
  */
 psFitsType psFitsGetExtType(
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -143,5 +143,5 @@
     ///< of the cooresponding HDUs.
 
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                       ///< the psFits object
 );
 
@@ -152,5 +152,5 @@
 bool psFitsWriteHeader(
     const psMetadata* header,          ///< the psMetadata data in which to write
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -161,5 +161,5 @@
 psImage* psFitsReadImage(
     psImage* out,                      ///< a psImage to recycle.
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     psRegion region,                   ///< the region in the FITS image to read
     int z                              ///< the z-plane in the FITS image cube to read
@@ -171,5 +171,5 @@
  */
 bool psFitsWriteImage(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     const psMetadata* header,          ///< header items for the new HDU.  Can be NULL.
     const psImage* input,              ///< the image to output
@@ -183,5 +183,5 @@
  */
 bool psFitsUpdateImage(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     const psImage* input,              ///< the image to output
     psRegion region,                   ///< the region in the FITS image to write
@@ -195,5 +195,5 @@
  */
 psMetadata* psFitsReadTableRow(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     int row                            ///< row number to read
 );
@@ -206,5 +206,5 @@
  */
 psArray* psFitsReadTableColumn(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     const char* colname                ///< the column name
 );
@@ -217,5 +217,5 @@
  */
 psVector* psFitsReadTableColumnNum(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     const char* colname                ///< the column name
 );
@@ -231,5 +231,5 @@
  */
 psArray* psFitsReadTable(
-    psFits* fits                       ///< the psFits object
+    const psFits* fits                 ///< the psFits object
 );
 
@@ -242,5 +242,5 @@
  */
 bool psFitsWriteTable(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     psMetadata* header,                ///< header items for the new HDU.  Can be NULL.
     psArray* table,
@@ -258,5 +258,5 @@
  */
 bool psFitsUpdateTable(
-    psFits* fits,                      ///< the psFits object
+    const psFits* fits,                ///< the psFits object
     psMetadata* data,
     ///< Array of psMetadata items, which contains the output data items of each row.
