Changeset 14447 for trunk/Mars/mbase
- Timestamp:
- 10/02/12 11:44:41 (12 years ago)
- Location:
- trunk/Mars/mbase
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mbase/MLut.h
r9490 r14447 48 48 49 49 // MLut I/O 50 Int_t ReadStream( istream &in);51 Int_t WriteStream( ostream &out) const;50 Int_t ReadStream(std::istream &in); 51 Int_t WriteStream(std::ostream &out) const; 52 52 53 53 Int_t ReadFile(const char *fname); -
trunk/Mars/mbase/MReadSocket.h
r7808 r14447 34 34 public: 35 35 MReadSocket(int port=-1, int mtu=1500); 36 MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), istream((std::streambuf*)&log)36 MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), std::istream((std::streambuf*)&log) 37 37 { 38 38 } -
trunk/Mars/mbase/MTask.h
r9578 r14447 120 120 virtual Int_t CallPostProcess(); 121 121 122 void SavePrimitive( ostream &out, Option_t *o="");123 void SavePrimitive( ofstream &out, Option_t *o="");122 void SavePrimitive(std::ostream &out, Option_t *o=""); 123 void SavePrimitive(std::ofstream &out, Option_t *o=""); 124 124 125 125 // TObject -
trunk/Mars/mbase/MTaskList.h
r8642 r14447 34 34 35 35 void Remove(MTask *task); 36 void StreamPrimitive( ostream &out) const;36 void StreamPrimitive(std::ostream &out) const; 37 37 Bool_t CheckAddToList(MTask *task, /*const char *tType,*/ const MTask *where=NULL) const; 38 38 Int_t ProcessTaskList();
Note:
See TracChangeset
for help on using the changeset viewer.