LeviLamina
Loading...
Searching...
No Matches
UpgraderBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class SemVersion;
8namespace Puv { class LoadResultAny; }
9// clang-format on
10
11namespace Puv {
12
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 UpgraderBase& operator=(UpgraderBase const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~UpgraderBase();
32
33 // vIndex: 1
34 virtual ::Puv::LoadResultAny doUpgrade(::Puv::LoadResultAny) const = 0;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI UpgraderBase(::SemVersion const& from, ::SemVersion const& to);
41
42 MCNAPI ::Puv::LoadResultAny upgrade(::Puv::LoadResultAny source) const;
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor(::SemVersion const& from, ::SemVersion const& to);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCNAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
69
70} // namespace Puv
Definition LoadResultAny.h:12
Definition UpgraderBase.h:13
MCAPI UpgraderBase(::SemVersion const &from, ::SemVersion const &to)
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI::Puv::LoadResultAny upgrade(::Puv::LoadResultAny source) const
MCAPI void * $ctor(::SemVersion const &from, ::SemVersion const &to)
Definition SemVersion.h:16
Definition Alias.h:14