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 MCNAPI FileStream(::Core::Path const& filename, int openMode);
37
38 MCNAPI void open(::Core::Path const& filename, int om);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor(::Core::Path const& filename, int openMode);
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
53
54} // namespace Core
Definition FileStream.h:12
MCAPI FileStream(::Core::Path const &filename, int openMode)
MCAPI void open(::Core::Path const &filename, int om)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Core::Path const &filename, int openMode)
Definition Path.h:17
Definition Path.h:16
Definition Alias.h:14