EvolvingObjects
|
00001 #ifdef _MSC_VER 00002 // to avoid long name warnings 00003 #pragma warning(disable:4786) 00004 #endif 00005 00006 #include <eoPersistent.h> 00007 00008 //Implementation of these objects 00009 00010 00011 std::istream & operator >> ( std::istream& _is, eoPersistent& _o ) { 00012 _o.readFrom(_is); 00013 return _is; 00014 }