LeviLamina
Loading...
Searching...
No Matches
TextObjectText.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 TextObjectText : public ::ITextObject {
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 TextObjectText& operator=(TextObjectText const&);
24 TextObjectText(TextObjectText const&);
25 TextObjectText();
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 TextObjectText(::std::string text);
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCNAPI static ::Json::Value asJsonValue(::std::string const& textField);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCNAPI void* $ctor(::std::string text);
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI ::std::string $asString() const;
59
60 MCNAPI ::Json::Value $asJsonValue() const;
61
62 MCNAPI ::Json::Value $resolve(::ResolveData const&) const;
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition ITextObject.h:11
Definition Value.h:16
static MCAPI void ** $vftable()
MCAPI::Json::Value $resolve(::ResolveData const &) const
MCAPI void * $ctor(::std::string text)
MCAPI::std::string $asString() const
MCAPI TextObjectText(::std::string text)
MCAPI::Json::Value $asJsonValue() const
static MCAPI ::Json::Value asJsonValue(::std::string const &textField)
Definition ResolveData.h:5
Definition Alias.h:14