Changeset 914 in Sophya for trunk/SophyaLib/TArray/tvector.h


Ignore:
Timestamp:
Apr 13, 2000, 6:04:50 PM (25 years ago)
Author:
ansari
Message:

documentation cmv 13/4/00

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tvector.h

    r898 r914  
    1717  // Creation / destruction
    1818  TVector();
    19   TVector(uint_4 n, short lcv=ColumnVector, short mm=AutoMemoryMapping);
     19  TVector(uint_4 n, short lcv=AutoVectorType, short mm=AutoMemoryMapping);
    2020  TVector(const TVector<T>& v);
    2121  TVector(const TVector<T>& v, bool share);
    2222  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);
    2424
    2525  virtual ~TVector();
     
    2828  inline  TVector<T>& operator = (const TVector<T>& a)
    2929                       { Set(a);  return(*this); }
    30 
    3130
    3231  // Gestion taille/Remplissage
     
    5049  // Operateur d'affectation
    5150  //! Fill the vector with Sequence \b seq
    52   inline  TMatrix<T>&  operator = (Sequence seq) { SetSeq(seq); return(*this); }
     51  inline  TVector<T>&  operator = (Sequence seq) { SetSeq(seq); return(*this); }
    5352
    5453  // Operations diverses  avec une constante
Note: See TracChangeset for help on using the changeset viewer.