Changeset 1219 in Sophya for trunk/SophyaExt/FitsIOServer/fitsbntbllineRW.cc
- Timestamp:
- Oct 5, 2000, 11:17:43 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsbntbllineRW.cc
r1209 r1219 16 16 } 17 17 18 FITS_BntblLineReader::FITS_BntblLineReader(char inputfile[],int hdunum) 18 FITS_BntblLineReader::FITS_BntblLineReader(char inputfile[],int hdunum) 19 19 20 { 20 21 InitNull(); … … 98 99 99 100 100 FITS_BntblLineWriter::FITS_BntblLineWriter()101 {102 InitNull();103 }104 101 105 FITS_BntblLineWriter::FITS_BntblLineWriter(char inputfile[],int dc, int fc,int ic, int cc, vector<string> names, WriteMode wrm)102 FITS_BntblLineWriter::FITS_BntblLineWriter(char inputfile[],int dc, int fc,int ic, int cc, vector<string> names,DVList& dvl, WriteMode wrm) 106 103 { 107 104 int k; … … 132 129 StringSizes[k] = names[dc+fc+ic+k].length(); 133 130 } 134 DVList dvl;135 131 string extname("Lines_on_Binary_tbl"); 132 136 133 outFits_->makeHeaderBntblOnFits(types, names, 1, nbcols, dvl, extname,StringSizes); 137 134 ligne_.setFormat(dc, fc, ic, cc, names); … … 141 138 FITS_BntblLineWriter::~FITS_BntblLineWriter() 142 139 { 140 if (dvl_ != NULL) delete dvl_; 143 141 if (outFits_ != NULL) delete outFits_; 144 142 }
Note:
See TracChangeset
for help on using the changeset viewer.