changeset 42 | 83b8151b966d |
parent 34 | 4a35f239fe5b |
child 54 | c064ce9f40f5 |
--- a/pmc/include/object.h +++ b/pmc/include/object.h @@ -7,15 +7,14 @@ #define OBJECT_H #include <string> -#include <iostream> class Object { protected: std::string name; public: - virtual ~ Object () { - std::cout << "Freeing Object " << name << std::endl; - }; + virtual ~ Object (); + virtual std::string getName (); + virtual Object getClass (); }; #endif