This commit is contained in:
commit
3fe0218a72
79 changed files with 12547 additions and 0 deletions
10
eo/src/eoPersistent.cpp
Normal file
10
eo/src/eoPersistent.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include <eoPersistent.h>
|
||||
|
||||
//Implementation of these objects
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
istream & operator >> ( istream& _is, eoPersistent& _o ) {
|
||||
_o.readFrom(_is);
|
||||
return _is;
|
||||
};
|
||||
Reference in a new issue