LeviLamina
Loading...
Searching...
No Matches
StringNode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/json_object/Node.h"
7
8namespace Bedrock::JSONObject {
9
11public:
12 // member variables
13 // NOLINTBEGIN
14 union {
15 struct {
18 union {
21 };
22 };
24 };
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 StringNode& operator=(StringNode const&);
30 StringNode(StringNode const&);
31 StringNode();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI bool set(::std::string_view str, bool copy);
37 // NOLINTEND
38};
39
40} // namespace Bedrock::JSONObject
Definition Node.h:10
Definition StringNode.h:10
Definition Alias.h:14