LeviLamina
Loading...
Searching...
No Matches
DynamicValue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cereal { struct NullType; }
8// clang-format on
9
10namespace cereal {
11
12class DynamicValue {
13public:
14 // DynamicValue inner types define
15 enum class Type : int {
16 Null = 0,
17 Boolean = 1,
18 Integer = 2,
19 Number = 3,
20 String = 4,
21 Array = 5,
22 Object = 6,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 DynamicValue& operator=(DynamicValue const&);
34 DynamicValue(DynamicValue const&);
35 DynamicValue();
36
37public:
38 // member functions
39 // NOLINTBEGIN
41
42 MCNAPI uint64 hash() const;
43
44 MCNAPI ::cereal::DynamicValue& operator=(::cereal::DynamicValue&&);
45
46 MCNAPI ~DynamicValue();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCNAPI void $dtor();
59 // NOLINTEND
60};
61
62} // namespace cereal
Definition DynamicValue.h:12
MCAPI void * $ctor(::cereal::DynamicValue &&)
MCAPI void $dtor()
MCAPI uint64 hash() const
MCAPI::cereal::DynamicValue & operator=(::cereal::DynamicValue &&)
MCAPI DynamicValue(::cereal::DynamicValue &&)
Definition NullType.h:7
Definition Alias.h:14