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 FileOpenMode; }
8namespace Core { class PathView; }
9// clang-format on
10
11namespace Core {
12
13class FileStream : public virtual ::std::ios, public ::std::iostream {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 FileStream& operator=(FileStream const&);
24 FileStream(FileStream const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI FileStream();
30
31 MCNAPI FileStream(::Core::PathView filename, int openMode);
32
33#ifdef LL_PLAT_C
34 MCNAPI FileStream(uint64 bufferSize, ::Core::PathView filename, int openMode);
35#endif
36
37 MCNAPI void open(::Core::PathView filename, int om);
38
39 MCNAPI void open(::Core::PathView filename, ::Core::FileOpenMode openMode);
40
41 MCNAPI void setLoggingEnabled(bool enabled);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI void* $ctor();
48
49 MCNAPI void* $ctor(::Core::PathView filename, int openMode);
50
51#ifdef LL_PLAT_C
52 MCNAPI void* $ctor(uint64 bufferSize, ::Core::PathView filename, int openMode);
53#endif
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace Core
Definition FileOpenMode.h:7
MCAPI void * $ctor()
MCAPI void * $ctor(::Core::PathView filename, int openMode)
MCAPI void open(::Core::PathView filename, int om)
MCAPI FileStream(::Core::PathView filename, int openMode)
static MCAPI void ** $vftable()
MCAPI void open(::Core::PathView filename, ::Core::FileOpenMode openMode)
MCAPI void setLoggingEnabled(bool enabled)
Definition PathView.h:19
Definition Alias.h:14