diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-17 03:56:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-17 03:56:39 +0300 |
commit | ed41c67908b8d6289f0e5eb49f101c851d9adc75 (patch) | |
tree | 527d3352b2b4d6aca56d89dac5913de36aba6c4b /src/resources/resource.h | |
parent | e9a8a46fc92669236e37dd096f5a849aed74ca6a (diff) | |
download | plus-ed41c67908b8d6289f0e5eb49f101c851d9adc75.tar.gz plus-ed41c67908b8d6289f0e5eb49f101c851d9adc75.tar.bz2 plus-ed41c67908b8d6289f0e5eb49f101c851d9adc75.tar.xz plus-ed41c67908b8d6289f0e5eb49f101c851d9adc75.zip |
Debug option to dump loaded images names.
Diffstat (limited to 'src/resources/resource.h')
-rw-r--r-- | src/resources/resource.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/resources/resource.h b/src/resources/resource.h index c4593e7fe..7196fa916 100644 --- a/src/resources/resource.h +++ b/src/resources/resource.h @@ -23,6 +23,8 @@ #ifndef RESOURCE_H #define RESOURCE_H +#include "main.h" + #include <ctime> #include <string> @@ -38,7 +40,11 @@ class Resource * Constructor */ Resource(): mRefCount(0) - { } + { +#ifdef DEBUG_DUMP_LEAKS + mDumped = false; +#endif + } /** * Increments the internal reference count. @@ -66,6 +72,14 @@ class Resource unsigned getRefCount() const { return mRefCount; } +#ifdef DEBUG_DUMP_LEAKS + bool getDumped() + { return mDumped; } + + void setDumped(bool n) + { mDumped = n; } +#endif + protected: /** * Destructor. @@ -77,6 +91,9 @@ class Resource time_t mTimeStamp; /**< Time at which the resource was orphaned. */ unsigned mRefCount; /**< Reference count. */ std::string mName; +#ifdef DEBUG_DUMP_LEAKS + bool mDumped; +#endif }; #endif |