Changeset 14446 for trunk/Mars/mbase
- Timestamp:
- 10/02/12 11:15:33 (12 years ago)
- Location:
- trunk/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mbase/MParList.h
r8642 r14446 35 35 enum { kIsOwner = BIT(14) }; 36 36 37 void StreamPrimitive( ostream &out) const;37 void StreamPrimitive(std::ostream &out) const; 38 38 39 39 void Init(const char *name, const char *title); … … 99 99 void SetNames(TObjArray &arr); 100 100 101 void SavePrimitive( ostream &out, Option_t *o="");102 void SavePrimitive( ofstream &out, Option_t *o="");101 void SavePrimitive(std::ostream &out, Option_t *o=""); 102 void SavePrimitive(std::ofstream &out, Option_t *o=""); 103 103 104 104 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE); -
trunk/Mars/mbase/MTime.h
r12937 r14446 155 155 156 156 // I/O functions 157 istream &ReadBinary(istream &fin);158 ostream &WriteBinary(ostream &out) const;159 160 void AsciiRead( istream &fin);161 Bool_t AsciiWrite( ostream &out) const;157 std::istream &ReadBinary(std::istream &fin); 158 std::ostream &WriteBinary(std::ostream &out) const; 159 160 void AsciiRead(std::istream &fin); 161 Bool_t AsciiWrite(std::ostream &out) const; 162 162 163 163 // Conversion functions … … 199 199 }; 200 200 201 inline ostream &operator<<(ostream &out, const MTime &t)201 inline std::ostream &operator<<(std::ostream &out, const MTime &t) 202 202 { 203 203 out << t.GetString(); … … 205 205 } 206 206 207 inline istream &operator>>(istream &in, MTime &t)207 inline std::istream &operator>>(std::istream &in, MTime &t) 208 208 { 209 209 TString date, time;
Note:
See TracChangeset
for help on using the changeset viewer.