Changeset 1193 in Sophya for trunk/SophyaExt/FitsIOServer/fitsbntbllinereader.h
- Timestamp:
- Sep 19, 2000, 5:08:16 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsbntbllinereader.h
r1136 r1193 5 5 #define FITSBntblLineReader_SEEN 6 6 #include "fitsfile.h" 7 #include "xntuple.h"7 //#include "xntuple.h" 8 8 9 9 namespace SOPHYA { … … 21 21 ~FITS_BntblLineReader(); 22 22 23 XNTuple ReadNextLine(); 23 //XNTuple ReadNextLineX(); 24 BnTblLine& ReadNextLine(); 24 25 inline long GetNextLineIndex() const {return nextLineToBeRead_;} 25 26 inline void SetStartingLineIndex(long n) { nextLineToBeRead_ = n;} … … 43 44 inFits_ = NULL; 44 45 nextLineToBeRead_= 0; 45 dcount_ = 0;46 fcount_ = 0;47 icount_ = 0;48 ccount_ = 0;49 taille_des_chaines_ = 0;50 ddata_ = NULL;51 fdata_ = NULL;52 idata_ = NULL;53 cdata_ = NULL;54 ColName_ = NULL;55 46 } 56 47 // attributs de classe … … 58 49 FitsInFile* inFits_; 59 50 long nextLineToBeRead_; 60 int dcount_; 61 int fcount_; 62 int icount_; 63 int ccount_; 64 int taille_des_chaines_; 65 double* ddata_; 66 float* fdata_; 67 int* idata_; 68 char** cdata_; 69 char ** ColName_; 51 BnTblLine ligne_; 70 52 }; 53 54 71 55 ////////////////////////////////////////////////////////////////// 72 56
Note:
See TracChangeset
for help on using the changeset viewer.