aboutsummaryrefslogtreecommitdiff
path: root/src/cachecalc.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/cachecalc.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/cachecalc.h b/src/cachecalc.h
new file mode 100644
index 0000000..9e83b06
--- /dev/null
+++ b/src/cachecalc.h
@@ -0,0 +1,22 @@
1#ifndef BU_CACHE_CALC_H
2#define BU_CACHE_CALC_H
3
4namespace Bu
5{
6 template<class type>
7 class CacheCalc
8 {
9 public:
10 CacheCalc()
11 {
12 }
13
14 virtual ~CacheCalc()
15 {
16 }
17
18 private:
19 };
20};
21
22#endif