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 ::std::string _getStringMessage(::std::string const& s, int len, int maxLen);
42
43 MCNAPI static ::Scripting::ErrorBinding bindScript();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor(::std::string const& s, int len, int maxLen);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57};
58
59} // namespace Editor::ScriptModule
static MCAPI ::Scripting::ErrorBinding bindScript()
static MCAPI ::std::string _getStringMessage(::std::string const &s, int len, int maxLen)
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:16
Definition Alias.h:14