LeviLamina
Loading...
Searching...
No Matches
TreatmentPackSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/resource/PackOrigin.h"
7#include "mc/deps/core/resource/PackType.h"
8#include "mc/resources/PackSource.h"
9
10// auto generated forward declare list
11// clang-format off
12class Pack;
16// clang-format on
17
18class TreatmentPackSource : public ::PackSource {
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 TreatmentPackSource& operator=(TreatmentPackSource const&);
30 TreatmentPackSource(TreatmentPackSource const&);
31 TreatmentPackSource();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_S
37 virtual ~TreatmentPackSource() /*override*/ = default;
38#else // LL_PLAT_C
39 virtual ~TreatmentPackSource() /*override*/;
40#endif
41
42 virtual ::PackOrigin getPackOrigin() const /*override*/;
43
44 virtual ::PackType getPackType() const /*override*/;
45
46#ifdef LL_PLAT_S
47 virtual ::PackSourceLoadResult _loadImpl(::PackSourceLoadOptions&&) /*override*/;
48#else // LL_PLAT_C
49 virtual ::PackSourceLoadResult _loadImpl(::PackSourceLoadOptions&& options) /*override*/;
50#endif
51
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57#ifdef LL_PLAT_C
58 MCNAPI explicit TreatmentPackSource(::TreatmentPackSourceOptions options);
59
60 MCNAPI void addPack(::std::shared_ptr<::Pack>&& pack);
61#endif
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67#ifdef LL_PLAT_C
68 MCNAPI void* $ctor(::TreatmentPackSourceOptions options);
69#endif
70 // NOLINTEND
71
72public:
73 // destructor thunk
74 // NOLINTBEGIN
75 MCNAPI void $dtor();
76 // NOLINTEND
77
78public:
79 // virtual function thunks
80 // NOLINTBEGIN
81#ifdef LL_PLAT_C
82 MCNAPI ::PackOrigin $getPackOrigin() const;
83
84 MCNAPI ::PackType $getPackType() const;
85
86 MCNAPI ::PackSourceLoadResult $_loadImpl(::PackSourceLoadOptions&& options);
87#endif
88
89
90 // NOLINTEND
91
92public:
93 // vftables
94 // NOLINTBEGIN
95 MCNAPI static void** $vftable();
96 // NOLINTEND
97};
Definition Pack.h:28
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition PackSourceLoadOptions.h:5
Definition PackSourceLoadResult.h:5
Definition TreatmentPackSourceOptions.h:5
Definition Alias.h:14