LeviLamina
Loading...
Searching...
No Matches
SystemCacheStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
8public:
9 // SystemCacheStats inner types declare
10 // clang-format off
11 struct ImageCacheStats;
12 // clang-format on
13
14 // SystemCacheStats inner types define
15 struct ImageCacheStats {
16 public:
17 // ImageCacheStats inner types declare
18 // clang-format off
19 struct ImageData;
20 struct OrphanedImage;
21 // clang-format on
22
23 // ImageCacheStats inner types define
24 struct ImageData {
25 public:
26 // ImageData inner types define
27 enum class ImageState : int {};
28 };
29
30 struct OrphanedImage {};
31 };
32};
33
34} // namespace cohtml
Definition SystemCacheStats.h:7
Definition SystemCacheStats.h:15