diff --git a/pmc/include/object.h b/pmc/include/object.h new file mode 100644 --- /dev/null +++ b/pmc/include/object.h @@ -0,0 +1,22 @@ +/*** + * + * $Id: object.h,v 1.1.1.1 2008-04-28 17:33:22 mbroeker Exp $ + * $Source: /development/cpp/pmc/include/object.h,v $ + */ + +#ifndef OBJECT_H +#define OBJECT_H + +#include +#include + +class Object { + protected: + std::string name; + + public: + virtual ~ Object () { + std::cout << "Freeing Object " << name << std::endl; + } +}; +#endif