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

17
eo/src/eoPrintable.cpp Normal file
View file

@ -0,0 +1,17 @@
//-----------------------------------------------------------------------------
// eoPrintable.cpp
//-----------------------------------------------------------------------------
#include <eoPrintable.h>
//-----------------------------------------------------------------------------
//Implementation of these objects
//-----------------------------------------------------------------------------
ostream & operator << ( ostream& _os, const eoPrintable& _o ) {
_o.printOn(_os);
return _os;
};
//-----------------------------------------------------------------------------