diff --git a/pmc/include/object.h b/pmc/include/object.h --- a/pmc/include/object.h +++ b/pmc/include/object.h @@ -7,15 +7,14 @@ #define OBJECT_H #include -#include 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