Changeset 894 in Sophya for trunk/SophyaLib/TArray/fioarr.cc
- Timestamp:
- Apr 12, 2000, 7:42:33 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/fioarr.cc
r818 r894 13 13 /////////////////////////////////////////////////////////// 14 14 15 //! Default constructor 15 16 template <class T> 16 17 FIO_TArray<T>::FIO_TArray() … … 20 21 } 21 22 23 24 //! Constructor from the file \b filename 22 25 template <class T> 23 26 FIO_TArray<T>::FIO_TArray(string const & filename) … … 28 31 } 29 32 33 //! Constructor from the TArray \b obj 30 34 template <class T> 31 35 FIO_TArray<T>::FIO_TArray(const TArray<T> & obj) … … 41 45 } 42 46 47 //! Connect with a TArray \b obj 43 48 template <class T> 44 49 FIO_TArray<T>::FIO_TArray(TArray<T> * obj) … … 48 53 } 49 54 55 //! destructor 50 56 template <class T> 51 57 FIO_TArray<T>::~FIO_TArray() … … 54 60 } 55 61 62 //! Return pointer to the connected TArray 56 63 template <class T> 57 64 AnyDataObj* FIO_TArray<T>::DataObj() … … 60 67 } 61 68 69 //! Connect TArray \b o 62 70 template <class T> 63 71 void FIO_TArray<T>::SetDataObj(AnyDataObj & o)
Note:
See TracChangeset
for help on using the changeset viewer.