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;
11namespace Json { class Value; }
12// clang-format on
13
14namespace Puv {
15
16class JsonCppInput : public ::Puv::Input {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 JsonCppInput& operator=(JsonCppInput const&);
26 JsonCppInput(JsonCppInput const&);
27 JsonCppInput();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ::SemVersion version() const /*override*/;
33
34 virtual ::Puv::Input::Data data() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI explicit JsonCppInput(::Json::Value json);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::Json::Value json);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI ::SemVersion $version() const;
53
54 MCNAPI ::Puv::Input::Data $data() const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace Puv
Definition Value.h:16
Definition Input.h:15
MCAPI::Puv::Input::Data $data() const
MCAPI::SemVersion $version() const
MCAPI void * $ctor(::Json::Value json)
static MCAPI void ** $vftable()
MCAPI JsonCppInput(::Json::Value json)
Definition SemVersion.h:15
Definition Alias.h:14