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