class shape {};
class circle: public shape {};
class square: public shape {};
class doc {
shape* ar[3];
doc() {
createShape();
}
shape* appendShape();
};
doc d;
I need to save this object d into hard disk as binary format or send this data over network so that other program can populate this object.