aboutsummaryrefslogtreecommitdiff
path: root/src/cachestore.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cachestore.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cachestore.h b/src/cachestore.h
index 437b3d3..b75864b 100644
--- a/src/cachestore.h
+++ b/src/cachestore.h
@@ -29,6 +29,7 @@ namespace Bu
29 virtual void destroy( obtype *pObj, const keytype &key )=0; 29 virtual void destroy( obtype *pObj, const keytype &key )=0;
30 virtual bool has( const keytype &key )=0; 30 virtual bool has( const keytype &key )=0;
31 virtual Bu::List<keytype> getKeys() { return Bu::List<keytype>(); } 31 virtual Bu::List<keytype> getKeys() { return Bu::List<keytype>(); }
32 virtual int getSize() { return -1; }
32 33
33 private: 34 private:
34 }; 35 };