LeviLamina
Loading...
Searching...
No Matches
OutputFileStream.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 OutputFileStream : public ::Core::FileStream, public virtual ::std::ios {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~OutputFileStream() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
27
28 MCNAPI OutputFileStream(::Core::Path const& fileName, int openMode);
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI void* $ctor();
35
36 MCNAPI void* $ctor(::Core::Path const& fileName, int openMode);
37 // NOLINTEND
38
39public:
40 // vftables
41 // NOLINTBEGIN
42 MCNAPI static void** $vftable();
43 // NOLINTEND
44};
45
46} // namespace Core
Definition FileStream.h:12
Definition OutputFileStream.h:15
MCAPI void * $ctor()
MCAPI void * $ctor(::Core::Path const &fileName, int openMode)
MCAPI OutputFileStream(::Core::Path const &fileName, int openMode)
static MCAPI void ** $vftable()
Definition Path.h:17
Definition Path.h:16