LeviLamina
Loading...
Searching...
No Matches
InputFileStream.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/FileStream.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class Path; }
11// clang-format on
12
13namespace Core {
14
15class InputFileStream : public ::Core::FileStream, public virtual ::std::ios {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~InputFileStream() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI InputFileStream();
27
28 MCAPI InputFileStream(::Core::Path const& fileName, int openMode);
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCFOLD void* $ctor();
35
36 MCAPI void* $ctor(::Core::Path const& fileName, int openMode);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
51
52} // namespace Core
Definition FileStream.h:12
Definition InputFileStream.h:15
Definition Path.h:15
Definition Path.h:16