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

namespace Bu
{
	template<class obtype>
	class Cache
	{
	public:
		Cache()
		{
		}

		virtual ~Cache()
		{
		}

	};
};

#endif