aboutsummaryrefslogtreecommitdiff
path: root/src/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.h')
-rw-r--r--src/cache.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cache.h b/src/cache.h
index f614aca..259278c 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -214,6 +214,11 @@ namespace Bu
214 hEnt.erase( cId ); 214 hEnt.erase( cId );
215 } 215 }
216 216
217 Bu::List<keytype> getKeys()
218 {
219 return pStore->getKeys();
220 }
221
217 private: 222 private:
218 void incRef( keytype cId ) 223 void incRef( keytype cId )
219 { 224 {
@@ -230,8 +235,8 @@ namespace Bu
230 235
231 private: 236 private:
232 CidHash hEnt; 237 CidHash hEnt;
233 Store *pStore;
234 Calc *pCalc; 238 Calc *pCalc;
239 Store *pStore;
235 }; 240 };
236}; 241};
237 242