diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-10-08 19:46:43 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-10-08 19:46:43 +0000 |
commit | 10a078da8f7129c73bc5a40040e6f762f1f5936f (patch) | |
tree | d83fe4aa3df18355896e0e37c19831d220561eaa /src/cache.h | |
parent | 3f1c8998166466245aee2860197fb4908e55f1a2 (diff) | |
download | libbu++-10a078da8f7129c73bc5a40040e6f762f1f5936f.tar.gz libbu++-10a078da8f7129c73bc5a40040e6f762f1f5936f.tar.bz2 libbu++-10a078da8f7129c73bc5a40040e6f762f1f5936f.tar.xz libbu++-10a078da8f7129c73bc5a40040e6f762f1f5936f.zip |
Hey, more cachey goo!
Diffstat (limited to 'src/cache.h')
-rw-r--r-- | src/cache.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/cache.h b/src/cache.h new file mode 100644 index 0000000..24ef652 --- /dev/null +++ b/src/cache.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef BU_CACHE_H | ||
2 | #define BU_CACHE_H | ||
3 | |||
4 | namespace Bu | ||
5 | { | ||
6 | template<class obtype> | ||
7 | class Cache | ||
8 | { | ||
9 | public: | ||
10 | Cache() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | virtual ~Cache() | ||
15 | { | ||
16 | } | ||
17 | |||
18 | }; | ||
19 | }; | ||
20 | |||
21 | #endif | ||