Remove old eoObject.cpp

This commit is contained in:
jmerelo 1999-02-01 18:18:39 +00:00
commit 6e9ddda69c

View file

@ -1,25 +0,0 @@
//-----------------------------------------------------------------------------
// eoObject.cpp
//-----------------------------------------------------------------------------
#include <eoObject.h>
//-----------------------------------------------------------------------------
// Implementation of these objects
//-----------------------------------------------------------------------------
/*
ostream & operator << ( ostream& _os, const eoObject& _o ) {
_o.printOn(_os);
return _os;
}
//-----------------------------------------------------------------------------
istream & operator >> ( istream& _is, eoObject& _o ) {
_o.readFrom(_is);
return _is;
}
*/
//-----------------------------------------------------------------------------