Index: trunk/ippToPsps/src/Fits.h
===================================================================
--- trunk/ippToPsps/src/Fits.h	(revision 30861)
+++ trunk/ippToPsps/src/Fits.h	(revision 31010)
@@ -15,4 +15,5 @@
 
 /**
+
   Class that encapsulates a FITS file, making an OO interface to the dreaded cfitsio
 
@@ -21,16 +22,35 @@
 
     // fields
-    fitsfile* file;
+    fitsfile* file;             // cfitsio file pointer
+    char path[1000];            // FITS path
 
-    // methods
+    // accessor methods
     fitsfile* (*getFilePtr)();
+    char* (*getPath)();
+    bool (*countRows)();
+    bool (*getColumnMeta)();
     bool (*getColumnNumber)();
+    bool (*getColumnVector)();
+    bool (*readColumn)();
+    bool (*readColumnUsingName)();
+    bool (*getHeaderKeyValue)();
+
+    // mutators
     bool (*moveToExtension)();
     bool (*moveToHeader)();
     bool (*moveToBinaryTable)();
+    bool (*moveToBinaryTableAndCountRows)();
+    bool (*createBinaryTable)();
+    bool (*writeColumn)();
+    bool (*deleteRows)();
+    bool (*delete)();
+
+    // destructor
     void (*destroy)();
 
 } Fits;
 
+// constructors
+Fits* existing_Fits(char* path);
 Fits* new_Fits(char* path);
 
