Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

BasicObject.h

Go to the documentation of this file.
00001 #ifndef __BASICOBJECT_H
00002 #define __BASICOBJECT_H
00003 
00004 #include <string>
00005 #include <iostream>
00006 
00007 class BasicObject {
00008 public:
00009     virtual ~BasicObject() {}
00010     virtual std::string toString();
00011     virtual void toStream(std::ostream& out);
00012 };
00013 
00014 std::ostream& operator<<(std::ostream& out, BasicObject& bo);
00015 
00016 #endif
00017 

Generated at Thu Jul 11 13:31:49 2002 for Peekabooty by doxygen1.2.9 written by Dimitri van Heesch, © 1997-2001