paradiseo/eo/src/eoPersistent.cpp
gustavo 3fe0218a72
1999-01-29 12:23:55 +00:00

10 lines
No EOL
245 B
C++

#include <eoPersistent.h>
//Implementation of these objects
//-----------------------------------------------------------------------------
istream & operator >> ( istream& _is, eoPersistent& _o ) {
_o.readFrom(_is);
return _is;
};