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


Ignore:
Timestamp:
Jan 3, 2006, 3:20:23 PM (20 years ago)
Author:
ansari
Message:

Portage/compilation sur AIX-XlC (regatta): Ajout qualification de nom et namespace SOPHYA pour instanciation template - Reza 3 Jan 2006

File:
1 edited

Legend:

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

    r2752 r2868  
    1414  // Creation / destruction
    1515  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);
    1717  TVector(const TVector<T>& v);
    1818  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);
    2020  TVector(const BaseArray& a);
    21   TVector(const vector<T>& v, short lcv=AutoVectorType);
     21  TVector(const vector<T>& v, short lcv=BaseArray::AutoVectorType);
    2222
    2323  virtual ~TVector();
     
    3939   
    4040  // 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);
    4242  //! 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)
    4444              { 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);
    4646   
    4747  // Remplissage from/to a STL vector
Note: See TracChangeset for help on using the changeset viewer.