LeviLamina
Loading...
Searching...
No Matches
ActivationArguments.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class ActivationArguments {
8public:
9 // member variables
10 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ActivationArguments& operator=(ActivationArguments const&);
29 ActivationArguments(ActivationArguments const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
36 MCNAPI_C void parseURLArgument(::std::string const& url);
37
38 MCNAPI void preParseArguments();
39
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor();
47
48 MCNAPI_C void* $ctor(int argc, char** const argv);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCNAPI void $dtor();
55 // NOLINTEND
56};
57
58} // namespace Bedrock
Definition Alias.h:14