LeviLamina
Loading...
Searching...
No Matches
LRUCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace mce {
6
7struct LRUCache {
8public:
9 // LRUCache inner types declare
10 // clang-format off
11 struct CacheEntry;
12 // clang-format on
13
14 // LRUCache inner types define
15 struct CacheEntry {};
16};
17
18} // namespace mce
Definition LRUCache.h:15
Definition LRUCache.h:7