aboutsummaryrefslogtreecommitdiff
path: root/src/cachehandler.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-07-02 03:12:36 +0000
committerMike Buland <eichlan@xagasoft.com>2008-07-02 03:12:36 +0000
commitaa6471979556621151592e147be81ce940558e55 (patch)
tree487b0fade53903d32a6780fe285caa5de463a9eb /src/cachehandler.h
parenta153962ffe93e70f2419efeab904b515c99c2eda (diff)
downloadlibbu++-aa6471979556621151592e147be81ce940558e55.tar.gz
libbu++-aa6471979556621151592e147be81ce940558e55.tar.bz2
libbu++-aa6471979556621151592e147be81ce940558e55.tar.xz
libbu++-aa6471979556621151592e147be81ce940558e55.zip
Caching is coming together nicely, as well as the new nids system...or
whatever it'll be called later...
Diffstat (limited to '')
-rw-r--r--src/cachehandler.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cachehandler.h b/src/cachehandler.h
new file mode 100644
index 0000000..8841b4e
--- /dev/null
+++ b/src/cachehandler.h
@@ -0,0 +1,18 @@
1#ifndef BU_CACHE_HANDLER_H
2#define BU_CACHE_HANDLER_H
3
4namespace Bu
5{
6 template<class obtype>
7 class CacheHandler
8 {
9 public:
10 CacheHandler();
11 virtual ~CacheHandler();
12
13 forceLoad()
14 private:
15 };
16};
17
18#endif