Changeset 813 in Sophya for trunk/SophyaLib/TArray/tarray.h


Ignore:
Timestamp:
Apr 5, 2000, 5:44:19 PM (25 years ago)
Author:
ansari
Message:

Correction bug/amelioarions TArray,TMatrix,TVector - Reza 5/4/2000

File:
1 edited

Legend:

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

    r804 r813  
    8888  inline T toScalar();
    8989// Met les elements a une suite de valeurs
    90   virtual TArray<T>&  Set(Sequence seq);
    91   inline  TArray<T>&  operator = (Sequence seq)    { return Set(seq); }
     90  virtual TArray<T>&  SetSeq(Sequence seq);
     91  inline  TArray<T>&  operator = (Sequence seq)    { return SetSeq(seq); }
    9292// A = x (tous les elements a x)
    93   virtual TArray<T>&  Set(T x);
    94   inline  TArray<T>&  operator = (T x)             { return Set(x); }
     93  virtual TArray<T>&  SetT(T x);
     94  inline  TArray<T>&  operator = (T x)             { return SetT(x); }
    9595// A += -= *= /= x (ajoute, soustrait, ... x a tous les elements)
    9696  virtual TArray<T>&  Add(T x);
     
    121121
    122122// Impression, I/O, ...
    123   virtual string DataType() const;   // definition of abstract method inherited from BaseArray
    124   virtual void  Print(ostream& os, int_4 maxprt=-1, bool si=false) const ;
     123  virtual string InfoString() const;   
     124  virtual void   Print(ostream& os, int_4 maxprt=-1, bool si=false) const ;
    125125
    126126//  Pour la gestion de persistance
Note: See TracChangeset for help on using the changeset viewer.