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

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

		virtual ~CacheHandler()
		{
		}

		void forceLoad()
		{
		}
	private:
	};
};

#endif