pmc/include/object.h
changeset 4 236f8f747073
child 9 c3fecc82ade6
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 <string>
+#include <iostream>
+
+class Object {
+  protected:
+    std::string name;
+
+  public:
+    virtual ~ Object () {
+		std::cout << "Freeing Object " << name << std::endl;
+    }
+};
+#endif