Changeset 490 in Sophya for trunk/SophyaLib/NTools/tmatrix.h


Ignore:
Timestamp:
Oct 21, 1999, 5:25:53 PM (26 years ago)
Author:
ansari
Message:

Merge avec PEIDA++ (~V 3.8) et nettoyage pour nouveau PPersist Reza+cmv 21/10/99

File:
1 edited

Legend:

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

    r307 r490  
    194194  bool ownobj;
    195195};
     196
     197template <class T>
     198inline POutPersist& operator << (POutPersist& os, TMatrix<T> & obj)
     199{ FIO_TMatrix<T> fio(&obj);  fio.Write(os);  return(os); }
     200template <class T>
     201inline PInPersist& operator >> (PInPersist& is, TMatrix<T> & obj)
     202{ FIO_TMatrix<T> fio(&obj);  fio.Read(is);  return(is); }
    196203
    197204/////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.