Changeset 1359 in Sophya for trunk/SophyaExt/FitsIOServer/fitsfile.h
- Timestamp:
- Dec 19, 2000, 12:27:39 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsfile.h
r1354 r1359 93 93 FitsDataType_int, 94 94 FitsDataType_char, 95 FitsDataType_ASCII 95 FitsDataType_ASCII, 96 FitsDataType_long, 97 FitsDataType_byte 96 98 }; 97 99 … … 324 326 { 325 327 BnTblLine() {} 326 void setFormat(int dc, int fc, int ic, int cc, vector<string> names);328 void setFormat(int dc, int fc, int ic, int lc, int bc, int cc, vector<string> names); 327 329 bool sameFormat(const BnTblLine& btl) const; 328 330 … … 331 333 vector<double> ddata_; 332 334 vector<float> fdata_; 333 vector<int> idata_; 335 vector<int> idata_; 334 336 vector<string> cdata_; 335 337 vector<string> ColName_; 338 vector<long> ldata_; 339 vector<unsigned char> bdata_; 340 336 341 }; 337 342
Note:
See TracChangeset
for help on using the changeset viewer.