LeviLamina
Loading...
Searching...
No Matches
Binder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
7class Binder {
8public:
9 // Binder inner types define
10 enum class BindingMode : int {
11 Value = 0,
12 Scoped = 1,
13 ScopedSafe = 2,
14 ScopedSafeKeyValue = 3,
15 GetTypeInfo = 4,
16 };
17};
18
19} // namespace cohtml
Definition Binder.h:7