LeviLamina
Loading...
Searching...
No Matches
CommandContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CommandOrigin;
8// clang-format on
9
10class CommandContext {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::std::string mCommand;
15 ::std::unique_ptr<::CommandOrigin> mOrigin;
16 int mVersion;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 CommandContext();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI CommandContext(::std::string const& cmd, ::std::unique_ptr<::CommandOrigin> origin, int version);
27
28 MCFOLD ::CommandOrigin const& getCommandOrigin() const;
29
30 MCAPI ~CommandContext();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::std::string const& cmd, ::std::unique_ptr<::CommandOrigin> origin, int version);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCFOLD void $dtor();
43 // NOLINTEND
44};
Definition CommandOrigin.h:32