00001 #include "Object.h" 00002 00003 #include <stdio.h> 00004 00005 Object::Object (int pId) 00006 : Id(pId) 00007 { 00008 } 00009 00010 Object::~Object () { 00011 } 00012 00013 void Object::Print () 00014 { 00015 fprintf (stdout, "This is Object %d\n", this->Id); 00016 } 00017