Ignore:
Timestamp:
Dec 19, 2000, 12:27:39 PM (25 years ago)
Author:
lemeur
Message:

extension bntblLineRW aux long et byte

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitsfile.h

    r1354 r1359  
    9393     FitsDataType_int,
    9494     FitsDataType_char,
    95      FitsDataType_ASCII
     95     FitsDataType_ASCII,
     96     FitsDataType_long,
     97     FitsDataType_byte
    9698   };
    9799
     
    324326 {
    325327   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);
    327329   bool sameFormat(const BnTblLine& btl) const;
    328330
     
    331333   vector<double> ddata_;
    332334   vector<float>  fdata_;
    333    vector<int>    idata_;
     335   vector<int>    idata_; 
    334336   vector<string>  cdata_;
    335337   vector<string> ColName_;
     338   vector<long>   ldata_;
     339   vector<unsigned char>   bdata_;
     340
    336341 };
    337342
Note: See TracChangeset for help on using the changeset viewer.