From b2997491473a00f7fe11201d62228edd92c645fb Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 13 Sep 2015 23:48:27 +0000 Subject: The cache wasn't accessible from CacheObject decendants that were const. --- src/unstable/cacheobject.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/unstable/cacheobject.h b/src/unstable/cacheobject.h index 080312f..333d766 100644 --- a/src/unstable/cacheobject.h +++ b/src/unstable/cacheobject.h @@ -123,6 +123,11 @@ namespace Bu { return pCache; } + + CacheType *getCache() const + { + return pCache; + } public: class Initializer -- cgit v1.2.3