00001 #include "testobject.h" 00002 00003 TestObject::TestObject(char *text) 00004 { 00005 printf("TestObject() %s\n", text); 00006 } 00007 00008 TestObject::~TestObject() 00009 { 00010 printf("~TestObject()\n"); 00011 } 00012