LeviLamina
Loading...
Searching...
No Matches
ScriptCommandOutput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ScriptCommandOutput {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 ScriptCommandOutput& operator=(ScriptCommandOutput const&);
16 ScriptCommandOutput(ScriptCommandOutput const&);
17
18public:
19 // member functions
20 // NOLINTBEGIN
22
23 MCNAPI ::std::string getMessages() const;
24
25 MCNAPI int getSuccessCount() const;
26
27 MCNAPI void setOutput(int successCount, ::std::string&& messages);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI void* $ctor();
34 // NOLINTEND
35};
MCAPI ScriptCommandOutput()
MCAPI int getSuccessCount() const
MCAPI void * $ctor()
MCAPI void setOutput(int successCount, ::std::string &&messages)
MCAPI::std::string getMessages() const
Definition Alias.h:14