diff options
author | Sebastian Geerken <devnull@localhost> | 2013-12-21 13:31:52 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-12-21 13:31:52 +0100 |
commit | f88732b807281ac94e4dc6575daf9d2a13905eb0 (patch) | |
tree | 4ea3938e633dc2fca0ce90ae65369a01478b189a /dw/imgbuf.hh | |
parent | 86d34443bb7ccd374b685b72c79682faabd2c0af (diff) |
Some more RTFL messages.
Diffstat (limited to 'dw/imgbuf.hh')
-rw-r--r-- | dw/imgbuf.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dw/imgbuf.hh b/dw/imgbuf.hh index 3ccbe3c5..f9870bcf 100644 --- a/dw/imgbuf.hh +++ b/dw/imgbuf.hh @@ -5,6 +5,8 @@ # error Do not include this file directly, use "core.hh" instead. #endif +#include "../lout/debug.hh" + namespace dw { namespace core { @@ -161,6 +163,12 @@ class Imgbuf: public lout::object::Object, public lout::signal::ObservedObject public: enum Type { RGB, RGBA, GRAY, INDEXED, INDEXED_ALPHA }; + inline Imgbuf () { + DBG_OBJ_CREATE ("dw::core::Imgbuf"); + DBG_OBJ_BASECLASS (lout::object::Object); + DBG_OBJ_BASECLASS (lout::signal::ObservedObject); + } + /* * Methods called from the image decoding */ |