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