Changeset 1081 in Sophya for trunk/SophyaLib/TArray/tmatrix.h
- Timestamp:
- Jul 24, 2000, 2:51:27 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tmatrix.h
r1013 r1081 20 20 TMatrix(const TArray<T>& a); 21 21 TMatrix(const TArray<T>& a, bool share, short mm=BaseArray::AutoMemoryMapping); 22 TMatrix(const BaseArray& a); 22 23 23 24 virtual ~TMatrix(); … … 30 31 inline TMatrix<T>& operator = (const TMatrix<T>& a) 31 32 { Set(a); return(*this); } 33 34 virtual TArray<T>& SetBA(const BaseArray& a); 35 inline TMatrix<T>& operator = (const BaseArray& a) 36 { SetBA(a); return(*this); } 32 37 33 38 // Size - Changing the Size
Note:
See TracChangeset
for help on using the changeset viewer.