LeviLamina
Loading...
Searching...
No Matches
NodeBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/container/list_standard_operations.h"
7
8namespace Bedrock::JSONObject {
9
10class NodeBase : public ::Bedrock::Intrusive::
11 list_standard_operations<::Bedrock::JSONObject::NodeBase, ::Bedrock::JSONObject::NodeBase> {
12public:
13 // NodeBase inner types declare
14 // clang-format off
15 class Offset;
16 // clang-format on
17
18 // NodeBase inner types define
19 class Offset {
20 public:
21 // member variables
22 // NOLINTBEGIN
23 union {
26 };
27 // NOLINTEND
28
29 public:
30 // prevent constructor by default
31 Offset& operator=(Offset const&);
32 Offset(Offset const&);
33 Offset();
34 };
35
36public:
37 // member variables
38 // NOLINTBEGIN
39 union {
40 struct {
46 };
48 };
49 // NOLINTEND
50
51public:
52 // prevent constructor by default
53 NodeBase& operator=(NodeBase const&);
54 NodeBase(NodeBase const&);
55 NodeBase();
56};
57
58} // namespace Bedrock::JSONObject
Definition NodeBase.h:11
Definition Alias.h:14