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
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 TextObjectText& operator=(TextObjectText const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::std::string asString() const /*override*/;
32
33 // vIndex: 2
34 virtual ::Json::Value asJsonValue() const /*override*/;
35
36 // vIndex: 3
37 virtual ::Json::Value resolve(::ResolveData const& resolveData) const /*override*/;
38
39 // vIndex: 0
40 virtual ~TextObjectText() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // static functions
45 // NOLINTBEGIN
46 MCAPI static ::Json::Value asJsonValue(::std::string const& textField);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCFOLD ::std::string $asString() const;
59
60 MCAPI ::Json::Value $asJsonValue() const;
61
62 MCFOLD ::Json::Value $resolve(::ResolveData const& resolveData) const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition ITextObject.h:11
Definition TextObjectText.h:14
Definition ResolveData.h:5
Definition Alias.h:14