Changeset 288 in Sophya for trunk/SophyaLib/NTools/matrix.h
- Timestamp:
- May 3, 1999, 6:55:25 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/matrix.h
r220 r288 12 12 13 13 class GeneralFit; 14 #include "tmatrix.h" 15 //cmv template <class T> class TMatrix; 14 16 15 17 // <summary> Operations matricielles </summary> … … 18 20 friend class Vector; 19 21 friend class MatrixRC; 22 friend class TMatrix<r_8>; 20 23 public: 21 24 Matrix(); … … 26 29 // Constructeur par copie 27 30 Matrix(const Matrix& a); 31 // Constructeur par copie a partir d'une TMatrix<r_8> 32 Matrix(const TMatrix<r_8>& a); 28 33 // Destructeur 29 34 virtual ~Matrix(); … … 151 156 int nalloc; 152 157 r_8* data; 158 bool FromTmatrix; 153 159 }; 154 160
Note:
See TracChangeset
for help on using the changeset viewer.