This commit is contained in:
commit
3fe0218a72
79 changed files with 12547 additions and 0 deletions
17
eo/src/eoPrintable.cpp
Normal file
17
eo/src/eoPrintable.cpp
Normal 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;
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
Reference in a new issue