From 7537acd630e8973c92bb769b56d78836372b30c2 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 8 Feb 2010 15:35:12 +0100 Subject: Add optional templated base class to Cache and SharedCache We want this for integration with C-style classes. --- client/shared_cache.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client/shared_cache.hpp') diff --git a/client/shared_cache.hpp b/client/shared_cache.hpp index ee966386..96a476f7 100644 --- a/client/shared_cache.hpp +++ b/client/shared_cache.hpp @@ -27,8 +27,8 @@ const char* name(); };*/ -template -class SharedCache { +template +class SharedCache : public Base { public: SharedCache() : _aborting (false) -- cgit