Ignore:
Timestamp:
Jan 13, 2006, 11:05:52 AM (20 years ago)
Author:
ansari
Message:

Mise en place de l heritage FitsIOHandler (ancien) de FitsHandlerInterface pour une gestion commune - a partir de FitsManager - Reza 13/01/2006

File:
1 edited

Legend:

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

    r1231 r2897  
    3535    ownobj_ = false;
    3636  }   
     37virtual   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  }
    3744
     45virtual int         CheckReadability(FitsInOutFile& is);
     46
     47virtual FitsHandlerInterface* Clone()
     48    { return new FITS_NTuple() ; }
    3849
    3950/*!
Note: See TracChangeset for help on using the changeset viewer.