LeviLamina
Loading...
Searching...
No Matches
ExcludedPath.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/PathBuffer.h"
7
8namespace Core {
9
10struct ExcludedPath {
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 ExcludedPath& operator=(ExcludedPath const&);
21 ExcludedPath(ExcludedPath const&);
22 ExcludedPath();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCNAPI ExcludedPath(::Core::PathBuffer<::std::string> path, bool copyLooseFile);
29
30 MCNAPI ~ExcludedPath();
31#endif
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37#ifdef LL_PLAT_C
38 MCNAPI void* $ctor(::Core::PathBuffer<::std::string> path, bool copyLooseFile);
39#endif
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45#ifdef LL_PLAT_C
46 MCNAPI void $dtor();
47#endif
48 // NOLINTEND
49};
50
51} // namespace Core
Definition PathBuffer.h:8
Definition Alias.h:14