Changeset 958 in Sophya for trunk/SophyaLib/TArray/fioarr.h
- Timestamp:
- Apr 18, 2000, 3:38:53 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/fioarr.h
r926 r958 34 34 }; 35 35 36 //! Write TArray \b obj into POutPersist stream \b os 36 /*! \ingroup TArray \fn operator<<(POutPersist&,TArray<T>&) 37 \brief Write TArray \b obj into POutPersist stream \b os */ 37 38 template <class T> 38 39 inline POutPersist& operator << (POutPersist& os, TArray<T> & obj) 39 40 { FIO_TArray<T> fio(&obj); fio.Write(os); return(os); } 40 41 41 //! Read TArray \b obj from PInPersist stream \b os 42 /*! \ingroup TArray \fn operator>>(PInPersist&,TArray<T>&) 43 \brief Read TArray \b obj from PInPersist stream \b os */ 42 44 template <class T> 43 45 inline PInPersist& operator >> (PInPersist& is, TArray<T> & obj)
Note:
See TracChangeset
for help on using the changeset viewer.