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&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual ::SemVersion version() const /*override*/;
33
34 // vIndex: 2
35 virtual ::Puv::Input::Data data() const /*override*/;
36
37 // vIndex: 0
38 virtual ~JsonCppInput() /*override*/;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI void $dtor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI ::SemVersion $version() const;
51
52 MCAPI ::Puv::Input::Data $data() const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace Puv
Definition Input.h:14
Definition JsonCppInput.h:15
Definition SemVersion.h:15
Definition Alias.h:14