LeviLamina
Loading...
Searching...
No Matches
SystemSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
7struct SystemSettings {
8public:
9 // SystemSettings inner types declare
10 // clang-format off
11 struct FallBackFormats;
12 // clang-format on
13
14 // SystemSettings inner types define
15 struct FallBackFormats {
16 public:
17 // FallBackFormats inner types declare
18 // clang-format off
19 struct FallBackFormat;
20 // clang-format on
21
22 // FallBackFormats inner types define
23 struct FallBackFormat {};
24 };
25};
26
27} // namespace cohtml
Definition SystemSettings.h:15