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
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI_C void* $ctor(::Core::PathBuffer<::std::string> path, bool copyLooseFile);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI_C void $dtor();
40 // NOLINTEND
41};
42
43} // namespace Core
Definition PathBuffer.h:8
Definition Alias.h:14