diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-02-08 15:35:12 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2010-02-23 14:43:20 +0100 |
commit | 7537acd630e8973c92bb769b56d78836372b30c2 (patch) | |
tree | 6d18e55ac863551f38af04c7d1d5c6921b5a39ec /client/cache.hpp | |
parent | 79d8c5c6a48e3b10d93d67dfd777b626dadafab9 (diff) | |
download | spice-7537acd630e8973c92bb769b56d78836372b30c2.tar.gz spice-7537acd630e8973c92bb769b56d78836372b30c2.tar.xz spice-7537acd630e8973c92bb769b56d78836372b30c2.zip |
Add optional templated base class to Cache and SharedCache
We want this for integration with C-style classes.
Diffstat (limited to 'client/cache.hpp')
-rw-r--r-- | client/cache.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/cache.hpp b/client/cache.hpp index 72340e16..0b53676c 100644 --- a/client/cache.hpp +++ b/client/cache.hpp @@ -26,8 +26,8 @@ const char* name(); };*/ -template <class T, class Treat, int HASH_SIZE> -class Cache { +template <class T, class Treat, int HASH_SIZE, class Base = EmptyBase> +class Cache : public Base { public: Cache() { |