Changeset 2699 in Sophya for trunk/SophyaLib/HiStats/basedtable.h
- Timestamp:
- Apr 27, 2005, 1:48:19 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/basedtable.h
r2688 r2699 87 87 //! Copy or merges the data from \b a into the data table (cp=true -> copy) 88 88 virtual void CopyMerge(BaseDataTable const& a, bool cp=false) ; 89 //! Equal (copy) operator 90 inline BaseDataTable& operator = (BaseDataTable const& a) 91 { CopyMerge(a, true) ; return *this ; } 92 89 90 //! Clear/reset the table content and structure. 91 virtual void Clear() = 0; 92 93 // ---- ASCII I/O 93 94 void Print(int num, int nmax=1) const ; 94 95 … … 101 102 int FillFromASCIIFile(string const& fn); 102 103 103 // Declaration de l interface NTuple 104 //------------------------------------------------------------- 105 //----------- Declaration de l interface NTuple -------------- 106 104 107 virtual sa_size_t NbLines() const ; 105 108 virtual sa_size_t NbColumns() const ; … … 115 118 virtual string LineHeaderToString() const; 116 119 virtual string LineToString(sa_size_t n) const; 120 121 // Pour la gestion de persistance PPF 122 friend class ObjFileIO<BaseDataTable> ; 117 123 118 124 protected:
Note:
See TracChangeset
for help on using the changeset viewer.