diff options
-rw-r--r-- | dw/bullet.cc | 6 | ||||
-rw-r--r-- | dw/bullet.hh | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/dw/bullet.cc b/dw/bullet.cc index fbb598ee..b74f836c 100644 --- a/dw/bullet.cc +++ b/dw/bullet.cc @@ -27,6 +27,12 @@ namespace dw { Bullet::Bullet () { + DBG_OBJ_CREATE ("dw::Bullet"); +} + +Bullet::~Bullet () +{ + DBG_OBJ_DELETE (); } void Bullet::sizeRequestImpl (core::Requisition *requisition) diff --git a/dw/bullet.hh b/dw/bullet.hh index 76451cf7..97a4909d 100644 --- a/dw/bullet.hh +++ b/dw/bullet.hh @@ -21,6 +21,7 @@ protected: public: Bullet (); + ~Bullet (); }; } // namespace dw |