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