Changeset 3837 in Sophya


Ignore:
Timestamp:
Aug 9, 2010, 12:49:41 PM (15 years ago)
Author:
ansari
Message:

MAJ commentaires pour doxygen, Reza 09/08/2010

Location:
trunk/SophyaLib/TArray
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/fioarr.cc

    r3751 r3837  
    1919  \class FIO_TArray
    2020  \ingroup TArray
    21   Class for persistent management of TArray
    22 
    23   This class manage also persistence for TMatrix and TVector.
    24   \sa TArray TMatrix TVector.
     21
     22  \brief Manager class the PPF I/O (SOPHYA persistence) of TArray<T> objects.
     23 
     24  This class manages SOPHYA persistence (Read/Write in PPF format) for objects
     25  of class TArray<T>, TMatrix<T> and TVector<T>
     26
    2527 */
    2628///////////////////////////////////////////////////////////
     
    3537
    3638
    37 //! Constructor from the file \b filename
     39//! Constructor from the file \b filename - Reads the TArray object from the specified file.
    3840template <class T>
    3941FIO_TArray<T>::FIO_TArray(string const & filename)
     
    7375}
    7476
    75 //! Return pointer to the connected TArray
     77//! Return the pointer to the connected TArray<T> object
    7678template <class T>
    7779AnyDataObj* FIO_TArray<T>::DataObj()
     
    9597}
    9698
     99//! Reads in the TArray<T> object from the PPF input stream \b is
    97100template <class T>
    98101void FIO_TArray<T>::ReadSelf(PInPersist& is)
     
    114117  }
    115118// On lit les tailles, etc ...
    116 // On ecrit les tailles, etc ...
    117119  int_4 tmpi4s[5];
    118120  is.Get(tmpi4s, 5);
     
    148150}
    149151
     152//! Writes the TArray<T> object to the output PPF  stream \b os
    150153template <class T>
    151154void FIO_TArray<T>::WriteSelf(POutPersist& os) const
     
    213216  if (itab[2] != 0)  os << dobj->Info();
    214217}
     218
    215219
    216220
  • trunk/SophyaLib/TArray/fioarr.h

    r2478 r3837  
    1414
    1515namespace SOPHYA {
    16 /////////////////////////////////////////////////////////////////////////
    17 //! Class for persistent management of TArray
     16/////////////////////////////////////////////////////////////////////////
     17// Gestionnaire PPF de TArray<T>, ainsi que TMatrix<T>/TVector<T>
     18/////////////////////////////////////////////////////////////////////////
    1819template <class T>
    1920class FIO_TArray : public  PPersist  {
Note: See TracChangeset for help on using the changeset viewer.