diff options
Diffstat (limited to 'src/cachecalc.h')
| -rw-r--r-- | src/cachecalc.h | 22 |
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 | |||
| 4 | namespace 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 | ||
