LeviLamina
Loading...
Searching...
No Matches
ProcessOpenI.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace bx { class Error; }
8namespace bx { class FilePath; }
9namespace bx { class StringView; }
10// clang-format on
11
12namespace bx {
13
14struct ProcessOpenI {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~ProcessOpenI() = 0;
19
20 virtual bool open(::bx::FilePath const&, ::bx::StringView const&, ::bx::Error*) = 0;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26
27 // NOLINTEND
28};
29
30} // namespace bx
Definition Error.h:7
Definition FilePath.h:7
Definition StringView.h:7
Definition ProcessOpenI.h:7