LeviLamina
Loading...
Searching...
No Matches
FocusContainerCustomData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> otherFocusContainerName;
10 ::ll::TypedStorage<8, 32, ::std::string> focusIdInside;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 FocusContainerCustomData& operator=(FocusContainerCustomData const&);
16 FocusContainerCustomData();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI FocusContainerCustomData(::FocusContainerCustomData const&);
22
23 MCAPI FocusContainerCustomData(::std::string const& name, ::std::string const& id);
24
25 MCAPI ~FocusContainerCustomData();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCFOLD void* $ctor(::FocusContainerCustomData const&);
32
33 MCFOLD void* $ctor(::std::string const& name, ::std::string const& id);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
Definition FocusContainerCustomData.h:5