Changeset 914 in Sophya for trunk/SophyaLib/TArray/tvector.h
- Timestamp:
- Apr 13, 2000, 6:04:50 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tvector.h
r898 r914 17 17 // Creation / destruction 18 18 TVector(); 19 TVector(uint_4 n, short lcv= ColumnVector, short mm=AutoMemoryMapping);19 TVector(uint_4 n, short lcv=AutoVectorType, short mm=AutoMemoryMapping); 20 20 TVector(const TVector<T>& v); 21 21 TVector(const TVector<T>& v, bool share); 22 22 TVector(const TArray<T>& a); 23 TVector(const TArray<T>& a, bool share, short mm=CMemoryMapping, short lcv=ColumnVector);23 TVector(const TArray<T>& a, bool share, short lcv=AutoVectorType, short mm=AutoMemoryMapping); 24 24 25 25 virtual ~TVector(); … … 28 28 inline TVector<T>& operator = (const TVector<T>& a) 29 29 { Set(a); return(*this); } 30 31 30 32 31 // Gestion taille/Remplissage … … 50 49 // Operateur d'affectation 51 50 //! Fill the vector with Sequence \b seq 52 inline T Matrix<T>& operator = (Sequence seq) { SetSeq(seq); return(*this); }51 inline TVector<T>& operator = (Sequence seq) { SetSeq(seq); return(*this); } 53 52 54 53 // Operations diverses avec une constante
Note:
See TracChangeset
for help on using the changeset viewer.