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 virtual ~OutputFileStream() /*override*/ = default;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
26
27 MCNAPI OutputFileStream(::Core::Path const& fileName, int openMode);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI void* $ctor();
34
35 MCNAPI void* $ctor(::Core::Path const& fileName, int openMode);
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
44
45} // namespace Core
Definition FileStream.h:13
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:10