00001 #ifndef TESTOBJECT_H 00002 #define TESTOBJECT_H 00003 00004 #include <stdio.h> 00005 00006 class TestObject 00007 { 00008 public: 00009 TestObject(char *text = "TestObject"); 00010 ~TestObject(); 00011 }; 00012 00013 00014 00015 00016 #endif
1.4.4