LeviLamina
Loading...
Searching...
No Matches
JsonCppInput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/puv/Input.h"
7
8// auto generated forward declare list
9// clang-format off
10class SemVersion;
11// clang-format on
12
13namespace Puv {
14
15class JsonCppInput : public ::Puv::Input {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 JsonCppInput& operator=(JsonCppInput const&);
25 JsonCppInput(JsonCppInput const&);
26 JsonCppInput();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::SemVersion version() const /*override*/;
32
33 virtual ::Puv::Input::Data data() const /*override*/;
34
35 virtual ~JsonCppInput() /*override*/;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCNAPI ::SemVersion $version() const;
48
49 MCNAPI ::Puv::Input::Data $data() const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
60
61} // namespace Puv
Definition Input.h:15
MCAPI void $dtor()
MCAPI::Puv::Input::Data $data() const
MCAPI::SemVersion $version() const
static MCAPI void ** $vftable()
Definition SemVersion.h:15
Definition Alias.h:14