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 TextObjectRoot();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~TextObjectRoot() /*override*/;
31
32 virtual ::Json::Value resolve(::ResolveData const& resolveData) const /*override*/;
33
34 virtual ::std::string asString() const /*override*/;
35
36 virtual ::Json::Value asJsonValue() const /*override*/;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI ::Json::Value $resolve(::ResolveData const& resolveData) const;
49
50 MCNAPI ::std::string $asString() const;
51
52 MCNAPI ::Json::Value $asJsonValue() const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
Definition ITextObject.h:11
Definition Value.h:16
MCAPI void $dtor()
MCAPI::std::string $asString() const
MCAPI::Json::Value $resolve(::ResolveData const &resolveData) const
static MCAPI void ** $vftable()
MCAPI::Json::Value $asJsonValue() const
Definition ResolveData.h:5
Definition Alias.h:14