LeviLamina
Loading...
Searching...
No Matches
PackInstanceId.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/resource/PackIdVersion.h"
7
8struct PackInstanceId {
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<8, 48, ::PackIdVersion> mPackId;
13 ::ll::TypedStorage<8, 32, ::std::string> mSubpackName;
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 PackInstanceId& operator=(PackInstanceId const&);
19 PackInstanceId();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI PackInstanceId(::PackInstanceId const&);
25
26 MCAPI PackInstanceId(::PackIdVersion const& packId, ::std::string const& subpackName);
27
28 MCAPI bool operator==(::PackInstanceId const& rhs) const;
29
30 MCAPI ~PackInstanceId();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCFOLD void* $ctor(::PackInstanceId const&);
37
38 MCAPI void* $ctor(::PackIdVersion const& packId, ::std::string const& subpackName);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI void $dtor();
45 // NOLINTEND
46};
Definition PackIdVersion.h:10