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