Changeset 2699 in Sophya for trunk/SophyaLib/HiStats/datatable.h
- Timestamp:
- Apr 27, 2005, 1:48:19 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/datatable.h
r2693 r2699 31 31 32 32 // Pour la gestion de persistance PPF 33 friend class ObjFileIO< DataTable> ;33 friend class ObjFileIO<BaseDataTable> ; 34 34 // pour fichiers FITS 35 35 friend class FITS_DataTable; 36 36 37 37 //! Reset the table content and structure 38 v oid Clear();38 virtual void Clear(); 39 39 protected: 40 40 void Share(DataTable const & a); … … 51 51 /*! Writes the object in the POutPersist stream \b os */ 52 52 inline POutPersist& operator << (POutPersist& os, DataTable & obj) 53 { ObjFileIO< DataTable> fio(&obj); fio.Write(os); return(os); }53 { ObjFileIO<BaseDataTable> fio(&obj); fio.Write(os); return(os); } 54 54 /*! Reads the object from the PInPersist stream \b is */ 55 55 inline PInPersist& operator >> (PInPersist& is, DataTable & obj) 56 { ObjFileIO<DataTable> fio(&obj); is.SkipToNextObject(); fio.Read(is); return(is); } 56 { ObjFileIO<BaseDataTable> fio(&obj); is.SkipToNextObject(); 57 fio.Read(is); return(is); } 57 58 // Classe pour la gestion de persistance 58 // ObjFileIO< DataTable>59 // ObjFileIO<BaseDataTable> 59 60 } // namespace SOPHYA 60 61
Note:
See TracChangeset
for help on using the changeset viewer.