LeviLamina
Loading...
Searching...
No Matches
RouteAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/routing/RouteHistoryAction.h"
7
8namespace OreUI {
9
10struct RouteAction {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> route;
15 ::ll::TypedStorage<4, 4, ::OreUI::RouteHistoryAction> action;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 RouteAction();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI RouteAction(::std::string const& route, ::OreUI::RouteHistoryAction action);
26
27 MCAPI ~RouteAction();
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCFOLD void* $ctor(::std::string const& route, ::OreUI::RouteHistoryAction action);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
42
43} // namespace OreUI
Definition RouteAction.h:7