LeviLamina
Loading...
Searching...
No Matches
Upgrader.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
13class Upgrader {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 Upgrader& operator=(Upgrader const&);
24 Upgrader(Upgrader const&);
25 Upgrader();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~Upgrader();
32
33 // vIndex: 1
34 virtual ::Puv::LoadResultAny doUpgrade(::Puv::LoadResultAny) const = 0;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI Upgrader(::SemVersion const& from, ::SemVersion const& to);
41
42 MCAPI ::Puv::LoadResultAny upgrade(::Puv::LoadResultAny source) const;
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::SemVersion const& from, ::SemVersion const& to);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68};
69
70} // namespace Puv
Definition LoadResultAny.h:12
Definition Upgrader.h:13
Definition SemVersion.h:15
Definition Alias.h:14