#include <vpr/IO/SerializableObject.h>
Inheritance diagram for vpr::SerializableObject:


Protected Member Functions | |
| SerializableObject () | |
| SerializableObject (const SerializableObject &o) | |
Instances of this type can be serialized to and de-serialized from data streams. This is based on a concept that is very similar to the notion of serializable objects in the Java programming langauge (classes that derive from java.io.Serializable).
Definition at line 133 of file SerializableObject.h.
| vpr::SerializableObject::SerializableObject | ( | ) | [inline, protected] |
Definition at line 137 of file SerializableObject.h.
00138 : WriteableObject(), ReadableObject() 00139 {;}
| vpr::SerializableObject::SerializableObject | ( | const SerializableObject & | o | ) | [inline, protected] |
Definition at line 141 of file SerializableObject.h.
00142 : WriteableObject(o), ReadableObject(o) 00143 {;}
1.5.1