Changeset 2868 in Sophya for trunk/SophyaLib/TArray/tvector.h
- Timestamp:
- Jan 3, 2006, 3:20:23 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tvector.h
r2752 r2868 14 14 // Creation / destruction 15 15 TVector(); 16 TVector(sa_size_t n, short lcv= AutoVectorType, short mm=AutoMemoryMapping, bool fzero=true);16 TVector(sa_size_t n, short lcv=BaseArray::AutoVectorType, short mm=BaseArray::AutoMemoryMapping, bool fzero=true); 17 17 TVector(const TVector<T>& v); 18 18 TVector(const TVector<T>& v, bool share); 19 TVector(const TArray<T>& a, bool share=true, short lcv= AutoVectorType);19 TVector(const TArray<T>& a, bool share=true, short lcv=BaseArray::AutoVectorType); 20 20 TVector(const BaseArray& a); 21 TVector(const vector<T>& v, short lcv= AutoVectorType);21 TVector(const vector<T>& v, short lcv=BaseArray::AutoVectorType); 22 22 23 23 virtual ~TVector(); … … 39 39 40 40 // Gestion taille/Remplissage 41 void ReSize(sa_size_t n, short lcv= SameVectorType, bool fzero=true);41 void ReSize(sa_size_t n, short lcv=BaseArray::SameVectorType, bool fzero=true); 42 42 //! a synonym (alias) for method ReSize(sa_size_t, short) 43 inline void SetSize(sa_size_t n, short lcv= SameVectorType, bool fzero=true)43 inline void SetSize(sa_size_t n, short lcv=BaseArray::SameVectorType, bool fzero=true) 44 44 { ReSize(n, lcv, fzero); } 45 void Realloc(sa_size_t n, short lcv= SameVectorType, bool force=false);45 void Realloc(sa_size_t n, short lcv=BaseArray::SameVectorType, bool force=false); 46 46 47 47 // Remplissage from/to a STL vector
Note:
See TracChangeset
for help on using the changeset viewer.