Changeset 31010 for trunk/ippToPsps/src/Fits.h
- Timestamp:
- Mar 22, 2011, 4:10:43 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/src/Fits.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/src/Fits.h
r30861 r31010 15 15 16 16 /** 17 17 18 Class that encapsulates a FITS file, making an OO interface to the dreaded cfitsio 18 19 … … 21 22 22 23 // fields 23 fitsfile* file; 24 fitsfile* file; // cfitsio file pointer 25 char path[1000]; // FITS path 24 26 25 // methods27 // accessor methods 26 28 fitsfile* (*getFilePtr)(); 29 char* (*getPath)(); 30 bool (*countRows)(); 31 bool (*getColumnMeta)(); 27 32 bool (*getColumnNumber)(); 33 bool (*getColumnVector)(); 34 bool (*readColumn)(); 35 bool (*readColumnUsingName)(); 36 bool (*getHeaderKeyValue)(); 37 38 // mutators 28 39 bool (*moveToExtension)(); 29 40 bool (*moveToHeader)(); 30 41 bool (*moveToBinaryTable)(); 42 bool (*moveToBinaryTableAndCountRows)(); 43 bool (*createBinaryTable)(); 44 bool (*writeColumn)(); 45 bool (*deleteRows)(); 46 bool (*delete)(); 47 48 // destructor 31 49 void (*destroy)(); 32 50 33 51 } Fits; 34 52 53 // constructors 54 Fits* existing_Fits(char* path); 35 55 Fits* new_Fits(char* path); 36 56
Note:
See TracChangeset
for help on using the changeset viewer.
