blob: 8841b4e6790976a6442e2c05f353f84921119359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef BU_CACHE_HANDLER_H
#define BU_CACHE_HANDLER_H
namespace Bu
{
template<class obtype>
class CacheHandler
{
public:
CacheHandler();
virtual ~CacheHandler();
forceLoad()
private:
};
};
#endif
|