LeviLamina
Loading...
Searching...
No Matches
FacetBinder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cohtml { class View; }
8// clang-format on
9
10namespace OreUI {
11
12class FacetBinder {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 8, ::cohtml::View*> mView;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 FacetBinder();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI explicit FacetBinder(::cohtml::View* view);
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCFOLD void* $ctor(::cohtml::View* view);
33 // NOLINTEND
34};
35
36} // namespace OreUI
Definition FacetBinder.h:7
Definition View.h:7