Changeset 2462 in Sophya for trunk/SophyaLib/BaseTools
- Timestamp:
- Nov 24, 2003, 10:25:46 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/ppfnametag.h
r2459 r2462 21 21 inline void WriteTag(POutPersist& po) 22 22 { return po.WriteNameTag(_tname); } 23 inline char* operator= (char* s) { _tname = s; }24 inline string & operator= (string const & s) { _tname =s; }23 inline char* operator= (char* s) { _tname = s; return s; } 24 inline string const & operator= (string const & s) { _tname = s; return s; } 25 25 inline operator string() const { return _tname; } 26 26 protected: … … 32 32 33 33 inline POutPersist& operator >> (POutPersist& so, PPFNameTag & pnt) 34 { returnpnt.WriteTag(so); return(so); }34 { pnt.WriteTag(so); return(so); } 35 35 36 36 } // namespace SOPHYA
Note:
See TracChangeset
for help on using the changeset viewer.