LeviLamina
Loading...
Searching...
No Matches
FilePath.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7class FilePath {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<1, 1024, char[1024]> m_filePath;
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 FilePath();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI explicit FilePath(char const* _rhs);
22
23 MCFOLD char const* get() const;
24 // NOLINTEND
25
26public:
27 // constructor thunks
28 // NOLINTBEGIN
29 MCAPI void* $ctor(char const* _rhs);
30 // NOLINTEND
31};
32
33} // namespace bx
Definition FilePath.h:7