Changeset 976 in Sophya for trunk/SophyaLib/TArray/tmatrix.cc
- Timestamp:
- Apr 27, 2000, 7:55:14 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tmatrix.cc
r970 r976 1 // $Id: tmatrix.cc,v 1.1 0 2000-04-26 17:55:10ansari Exp $1 // $Id: tmatrix.cc,v 1.11 2000-04-27 17:53:51 ansari Exp $ 2 2 // C.Magneville 04/99 3 3 #include "machdefs.h" … … 43 43 44 44 //! Constructor by copy 45 /*! \sa NDataBlock::NDataBlock(const NDataBlock<T>&) */ 45 /*! 46 \warning datas are \b SHARED with \b a. 47 \sa NDataBlock::NDataBlock(const NDataBlock<T>&) 48 */ 46 49 template <class T> 47 50 TMatrix<T>::TMatrix(const TMatrix<T>& a) … … 103 106 } 104 107 105 //! Set matirx equal to \b a and return *this 108 //! Set matrix equal to \b a and return *this 109 /*! 110 \warning Datas are copied (cloned) from \b a. 111 \sa NDataBlock::operator=(const NDataBlock<T>&) 112 */ 106 113 template <class T> 107 114 TArray<T>& TMatrix<T>::Set(const TArray<T>& a)
Note:
See TracChangeset
for help on using the changeset viewer.