LeviLamina
Loading...
Searching...
No Matches
JsonSchemaNodeBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace JsonUtil {
6
8public:
9 // member variables
10 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 JsonSchemaNodeBase& operator=(JsonSchemaNodeBase const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~JsonSchemaNodeBase();
33
34 // vIndex: 1
35 virtual void printSchema(::std::string&, ::std::string const&) const = 0;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI JsonSchemaNodeBase();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor();
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
68
69} // namespace JsonUtil
Definition JsonSchemaNodeBase.h:7
Definition Alias.h:14