This commit is contained in:
gustavo 1999-01-29 12:23:55 +00:00
commit 3fe0218a72
79 changed files with 12547 additions and 0 deletions

10
eo/src/eoPersistent.cpp Normal file
View file

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