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