Changeset 2822 in Sophya for trunk/SophyaLib/HiStats
- Timestamp:
- Oct 12, 2005, 3:07:03 PM (20 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/basedtable.h
r2808 r2822 18 18 19 19 namespace SOPHYA { 20 21 // Forward class declaration for Fits handler 22 template <class T> class FitsHandler; 23 20 24 //! Interface definition for classes handling data in a table. 21 25 class BaseDataTable : public AnyDataObj , public NTupleInterface { … … 160 164 // Pour la gestion de persistance PPF 161 165 friend class ObjFileIO<BaseDataTable> ; 166 // pour fichiers FITS 167 friend class FitsHandler<BaseDataTable>; 162 168 163 169 protected: -
trunk/SophyaLib/HiStats/datatable.h
r2808 r2822 14 14 15 15 // Forward class declaration for Fits handler 16 class FITS_DataTable;16 template <class T> class FitsHandler; 17 17 18 18 //! An implementation of BaseDataTable with data (columns) stored in memory. … … 34 34 friend class ObjFileIO<BaseDataTable> ; 35 35 // pour fichiers FITS 36 friend class F ITS_DataTable;37 36 friend class FitsHandler<BaseDataTable>; 37 38 38 //! Reset the table content and structure 39 39 virtual void Clear();
Note:
See TracChangeset
for help on using the changeset viewer.