Changeset 2897 in Sophya for trunk/SophyaExt/FitsIOServer/fitsntuple.h
- Timestamp:
- Jan 13, 2006, 11:05:52 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsntuple.h
r1231 r2897 35 35 ownobj_ = false; 36 36 } 37 virtual int CheckHandling(AnyDataObj & o) 38 { 39 if (typeid(o) == typeid(NTuple)) return 2; 40 NTuple * po = dynamic_cast< NTuple * >(& o); 41 if (po == NULL) return 0; 42 else return 1; 43 } 37 44 45 virtual int CheckReadability(FitsInOutFile& is); 46 47 virtual FitsHandlerInterface* Clone() 48 { return new FITS_NTuple() ; } 38 49 39 50 /*!
Note:
See TracChangeset
for help on using the changeset viewer.