aboutsummaryrefslogtreecommitdiff
path: root/src/cachecalc.h
blob: 9e83b066e30b3f63c64ee2e23ae79834ca3bb9a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef BU_CACHE_CALC_H
#define BU_CACHE_CALC_H

namespace Bu
{
	template<class type>
	class CacheCalc
	{
	public:
		CacheCalc()
		{
		}

		virtual ~CacheCalc()
		{
		}

	private:
	};
};

#endif