Changeset 2794 in Sophya for trunk/SophyaLib/BaseTools/ppfswapper.h
- Timestamp:
- Jun 2, 2005, 5:46:46 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/ppfswapper.h
r2698 r2794 29 29 30 30 inline PInPersist & InStream() { return *ppfis; } 31 inline P InPersist & OutStream() { return *ppfos; }31 inline POutPersist & OutStream() { return *ppfos; } 32 32 inline void SetInStream(PInPersist & is) { ppfis = &is; } 33 33 inline void SetOutStream(POutPersist & os) { ppfos = &os; } 34 34 35 35 // Operateur = , on recopie les pointeurs des streams 36 inline PPFDataSwapper & operator = (PPFDataSwapperconst & a)36 inline PPFDataSwapper<T>& operator = (PPFDataSwapper<T> const & a) 37 37 { ppfis = a.ppfis; ppfos = a.ppfos; return *this; } 38 38
Note:
See TracChangeset
for help on using the changeset viewer.