pmc/include/object.h
changeset 34 4a35f239fe5b
parent 9 c3fecc82ade6
child 42 83b8151b966d
equal deleted inserted replaced
33:5e0a954f7c0b 34:4a35f239fe5b
    13   protected:
    13   protected:
    14     std::string name;
    14     std::string name;
    15 
    15 
    16   public:
    16   public:
    17     virtual ~ Object () {
    17     virtual ~ Object () {
    18 		std::cout << "Freeing Object " << name << std::endl;
    18         std::cout << "Freeing Object " << name << std::endl;
    19     }
    19      };
    20 };
    20 };
    21 #endif
    21 #endif