LeviLamina
Loading...
Searching...
No Matches
TextObjectLocalizedText.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/textobject/ITextObject.h"
7
8// auto generated forward declare list
9// clang-format off
10struct ResolveData;
11namespace Json { class Value; }
12// clang-format on
13
14class TextObjectLocalizedText : public ::ITextObject {
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 TextObjectLocalizedText& operator=(TextObjectLocalizedText const&);
24 TextObjectLocalizedText(TextObjectLocalizedText const&);
25 TextObjectLocalizedText();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ::std::string asString() const /*override*/;
31
32 virtual ::Json::Value asJsonValue() const /*override*/;
33
34 virtual ::Json::Value resolve(::ResolveData const&) const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI explicit TextObjectLocalizedText(::std::string text);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::std::string text);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI ::std::string $asString() const;
53
54 MCNAPI ::Json::Value $asJsonValue() const;
55
56 MCNAPI ::Json::Value $resolve(::ResolveData const&) const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition ITextObject.h:11
Definition Value.h:16
MCAPI TextObjectLocalizedText(::std::string text)
static MCAPI void ** $vftable()
MCAPI::Json::Value $asJsonValue() const
MCAPI::Json::Value $resolve(::ResolveData const &) const
MCAPI::std::string $asString() const
MCAPI void * $ctor(::std::string text)
Definition ResolveData.h:5
Definition Alias.h:14