Changeset 41896 for trunk/psLib/src/fits/psFitsTableNew.h
- Timestamp:
- Nov 4, 2021, 6:10:51 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFitsTableNew.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsTableNew.h
r32263 r41896 55 55 // Get value for given row and column name 56 56 psBool psFitsTableGetBool(bool *status, psFitsTable *table, int row, const char* name); 57 psS8 psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name);58 psU8 psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name);57 psS8 psFitsTableGetS8(bool *status, psFitsTable *table, int row, const char* name); 58 psU8 psFitsTableGetU8(bool *status, psFitsTable *table, int row, const char* name); 59 59 psS16 psFitsTableGetS16(bool *status, psFitsTable *table, int row, const char* name); 60 60 psU16 psFitsTableGetU16(bool *status, psFitsTable *table, int row, const char* name); … … 63 63 psS64 psFitsTableGetS64(bool *status, psFitsTable *table, int row, const char* name); 64 64 psU64 psFitsTableGetU64(bool *status, psFitsTable *table, int row, const char* name); 65 66 65 psF32 psFitsTableGetF32(bool *status, psFitsTable *table, int row, const char* name); 67 66 psF64 psFitsTableGetF64(bool *status, psFitsTable *table, int row, const char* name); 68 67 68 psFitsTable *psFitsTableCreate (psArray *tableColumns, int numRows); 69 bool psFitsTableColumnAdd (psArray *tableColumns, char *name, psDataType type); 70 psFitsTableColumn *psFitsTableColumnAlloc (char *name, psDataType type); 71 72 bool psFitsTableSetS8 (psFitsTable *table, int row, const char* name, psS8 value); 73 bool psFitsTableSetU8 (psFitsTable *table, int row, const char* name, psU8 value); 74 bool psFitsTableSetS16(psFitsTable *table, int row, const char* name, psS16 value); 75 bool psFitsTableSetU16(psFitsTable *table, int row, const char* name, psU16 value); 76 bool psFitsTableSetS32(psFitsTable *table, int row, const char* name, psS32 value); 77 bool psFitsTableSetU32(psFitsTable *table, int row, const char* name, psU32 value); 78 bool psFitsTableSetS64(psFitsTable *table, int row, const char* name, psS64 value); 79 bool psFitsTableSetU64(psFitsTable *table, int row, const char* name, psU64 value); 80 bool psFitsTableSetF32(psFitsTable *table, int row, const char* name, psF32 value); 81 bool psFitsTableSetF64(psFitsTable *table, int row, const char* name, psF64 value); 82 69 83 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
