LeviLamina
Loading...
Searching...
No Matches
SubpackInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct SubpackInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 SubpackInfo& operator=(SubpackInfo const&);
17 SubpackInfo();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCNAPI SubpackInfo(::SubpackInfo const&);
23
24 MCNAPI ~SubpackInfo();
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCNAPI void* $ctor(::SubpackInfo const&);
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38};
MCAPI SubpackInfo(::SubpackInfo const &)
MCAPI void * $ctor(::SubpackInfo const &)
MCAPI ~SubpackInfo()
MCAPI void $dtor()
Definition Alias.h:14