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