LeviLamina
Loading...
Searching...
No Matches
ScriptPrefabErrorStringInvalidLength.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace Editor::ScriptModule {
14
15struct ScriptPrefabErrorStringInvalidLength : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ScriptPrefabErrorStringInvalidLength& operator=(ScriptPrefabErrorStringInvalidLength const&);
27 ScriptPrefabErrorStringInvalidLength(ScriptPrefabErrorStringInvalidLength const&);
28 ScriptPrefabErrorStringInvalidLength();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCNAPI ScriptPrefabErrorStringInvalidLength(::std::string const& s, int len, int maxLen);
34
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCNAPI static ::Scripting::ErrorBinding bindScript();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor(::std::string const& s, int len, int maxLen);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCNAPI void $dtor();
54 // NOLINTEND
55};
56
57} // namespace Editor::ScriptModule
static MCAPI ::Scripting::ErrorBinding bindScript()
MCAPI void * $ctor(::std::string const &s, int len, int maxLen)
MCAPI ScriptPrefabErrorStringInvalidLength(::std::string const &s, int len, int maxLen)
Definition BaseError.h:12
Definition ErrorBinding.h:15
Definition Alias.h:14