LeviLamina
Loading...
Searching...
No Matches
PathQueryError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::DDUI::PathUtility {
6
7struct PathQueryError {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<1, 1, bool> parsingError;
12 ::ll::TypedStorage<8, 32, ::std::string> message;
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 PathQueryError& operator=(PathQueryError const&);
18 PathQueryError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI PathQueryError(::Bedrock::DDUI::PathUtility::PathQueryError const&);
24
25 MCAPI ~PathQueryError();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCAPI void* $ctor(::Bedrock::DDUI::PathUtility::PathQueryError const&);
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCFOLD void $dtor();
38 // NOLINTEND
39};
40
41} // namespace Bedrock::DDUI::PathUtility
Definition PathQueryError.h:7