00001 #include "Object.h" 00002 00003 Object::Object (int pId) { 00004 this->Id= pId; 00005 } 00006 00007 Object::~Object () { 00008 } 00009 00010 void Object::Print (int indent) { 00011 PrintIndent(indent); 00012 printf("Object:\n"); 00013 00014 PrintIndent(indent+2); 00015 printf("Id = %d\n",this->Id); 00016 } 00017