Changeset 1099 in Sophya for trunk/SophyaLib/TArray/tvector.h
- Timestamp:
- Jul 26, 2000, 6:29:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tvector.h
r976 r1099 19 19 TVector(const TArray<T>& a); 20 20 TVector(const TArray<T>& a, bool share, short lcv=AutoVectorType, short mm=AutoMemoryMapping); 21 TVector(const BaseArray& a); 21 22 22 23 virtual ~TVector(); … … 27 28 inline TVector<T>& operator = (const TVector<T>& a) 28 29 { Set(a); return(*this); } 29 30 //! Operator = between a vector and a matrix 31 inline TVector<T>& operator = (const TMatrix<T>& a) 32 { Set(a); return(*this); } 33 //! Operator = between a vector and an array 34 inline TVector<T>& operator = (const TArray<T>& a) 35 { Set(a); return(*this); } 36 //! Operator = between Vectors with different types 37 inline TVector<T>& operator = (const BaseArray& a) 38 { SetBA(a); return(*this); } 39 30 40 // Gestion taille/Remplissage 31 41 void ReSize(uint_4 n, short lcv=SameVectorType );
Note:
See TracChangeset
for help on using the changeset viewer.