summaryrefslogtreecommitdiff
path: root/src/resources/resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/resource.h')
-rw-r--r--src/resources/resource.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/resources/resource.h b/src/resources/resource.h
index d8f4a7f11..76dd71b4f 100644
--- a/src/resources/resource.h
+++ b/src/resources/resource.h
@@ -75,6 +75,12 @@ class Resource
unsigned getRefCount() const
{ return mRefCount; }
+ void setSource(const std::string str)
+ { mSource = str; }
+
+ std::string getSource() const
+ { return mSource; }
+
#ifdef DEBUG_DUMP_LEAKS
bool getDumped() const
{ return mDumped; }
@@ -94,7 +100,7 @@ class Resource
private:
time_t mTimeStamp; /**< Time at which the resource was orphaned. */
unsigned mRefCount; /**< Reference count. */
- std::string mName;
+ std::string mSource;
#ifdef DEBUG_DUMP_LEAKS
bool mDumped;
#endif