Changeset 2697 in Sophya for trunk/SophyaPI/PIext/nomhistadapter.h
- Timestamp:
- Apr 26, 2005, 6:24:52 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomhistadapter.h
r2683 r2697 14 14 #include "ntuple.h" 15 15 #include "xntuple.h" 16 #include "basedtable.h" 16 17 17 18 //----------------------------------------------------------------------------- … … 168 169 }; 169 170 171 //------------------------------------------------------------------------- 172 // Class Adaptateur d'objet (Pour NamedObjMgr) d'objet BaseDataTable 173 //------------------------------------------------------------------------- 174 175 class NOMAdapter_DataTable : public NObjMgrAdapter { 176 public: 177 NOMAdapter_DataTable(BaseDataTable* dt = NULL); 178 virtual ~NOMAdapter_DataTable(); 179 180 virtual NObjMgrAdapter* Clone(AnyDataObj* o); 181 182 virtual string GetDataObjType(); 183 184 virtual AnyDataObj* CloneDataObj(bool share=false); 185 186 virtual void ReadFits(string const & flnm); 187 virtual void SaveFits(string const & flnm); 188 virtual void SavePPF(POutPersist& s, string const & nom); 189 190 virtual void Print(ostream& os); 191 virtual NTupleInterface* GetNTupleInterface(bool& adel); 192 193 protected: 194 BaseDataTable* mDT; 195 }; 196 170 197 171 198
Note:
See TracChangeset
for help on using the changeset viewer.