LeviLamina
Loading...
Searching...
No Matches
BinaryInput.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 BinaryInput : public ::Puv::Input {
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 BinaryInput& operator=(BinaryInput const&);
26 BinaryInput(BinaryInput const&);
27 BinaryInput();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ::SemVersion version() const /*override*/;
33
34 virtual ::Puv::Input::Data data() const /*override*/;
35
36 virtual ~BinaryInput() /*override*/;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCNAPI void $dtor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI ::SemVersion $version() const;
49
50 MCNAPI ::Puv::Input::Data $data() const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace Puv
static MCAPI void ** $vftable()
MCAPI::Puv::Input::Data $data() const
MCAPI void $dtor()
MCAPI::SemVersion $version() const
Definition Input.h:15
Definition SemVersion.h:15
Definition Alias.h:14