EvolvingObjects
eoPrintable.cpp
00001 #ifdef _MSC_VER
00002 // to avoid long name warnings
00003 #pragma warning(disable:4786)
00004 #endif
00005 
00006 //-----------------------------------------------------------------------------
00007 // eoPrintable.cpp
00008 //-----------------------------------------------------------------------------
00009 
00010 #include <eoPrintable.h>
00011 
00012 //-----------------------------------------------------------------------------
00013 //Implementation of these objects
00014 //-----------------------------------------------------------------------------
00015 
00016 std::ostream & operator << ( std::ostream& _os, const eoPrintable& _o ) {
00017         _o.printOn(_os);
00018         return _os;
00019 }
00020 
00021 //-----------------------------------------------------------------------------
 All Classes Namespaces Files Functions Variables Typedefs Friends