Changeset 1081 in Sophya for trunk/SophyaLib/TArray/tmatrix.h


Ignore:
Timestamp:
Jul 24, 2000, 2:51:27 PM (25 years ago)
Author:
ansari
Message:

Adaptation modifs MuTyV et services de copie entre tableaux de type different - Reza 24/7/2000

File:
1 edited

Legend:

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

    r1013 r1081  
    2020  TMatrix(const TArray<T>& a);
    2121  TMatrix(const TArray<T>& a,  bool share, short mm=BaseArray::AutoMemoryMapping);
     22  TMatrix(const BaseArray& a);
    2223
    2324  virtual ~TMatrix();
     
    3031  inline  TMatrix<T>& operator = (const TMatrix<T>& a)
    3132                     { Set(a);  return(*this); }
     33
     34  virtual TArray<T>& SetBA(const BaseArray& a);
     35  inline  TMatrix<T>& operator = (const BaseArray& a)
     36                     { SetBA(a);  return(*this); }
    3237
    3338  // Size - Changing the Size
Note: See TracChangeset for help on using the changeset viewer.