LeviLamina
Loading...
Searching...
No Matches
FileStdStreamBuf.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class File; }
8namespace Core { class FileOpenMode; }
9// clang-format on
10
11namespace Core {
12
13class FileStdStreamBuf : public ::std::streambuf {
14public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 FileStdStreamBuf& operator=(FileStdStreamBuf const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~FileStdStreamBuf() /*override*/;
34
35 // vIndex: 6
36 virtual int underflow() /*override*/;
37
38 // vIndex: 3
39 virtual int overflow(int c) /*override*/;
40
41 // vIndex: 10
42 virtual ::std::fpos<::_Mbstatet> seekoff(int64 off, int way, int) /*override*/;
43
44 // vIndex: 11
45 virtual ::std::fpos<::_Mbstatet> seekpos(::std::fpos<::_Mbstatet> pos, int) /*override*/;
46
47 // vIndex: 13
48 virtual int sync() /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCNAPI int _flushoutput();
55
56 MCNAPI void open(::Core::File&& file, ::Core::FileOpenMode fileOpenMode);
57 // NOLINTEND
58
59public:
60 // static variables
61 // NOLINTBEGIN
62 MCNAPI static uint64 const& DEFAULT_BUFFER_SIZE();
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCNAPI void $dtor();
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCNAPI int $underflow();
75
76 MCNAPI int $overflow(int c);
77
78 MCNAPI ::std::fpos<::_Mbstatet> $seekoff(int64 off, int way, int);
79
80 MCNAPI ::std::fpos<::_Mbstatet> $seekpos(::std::fpos<::_Mbstatet> pos, int);
81
82 MCNAPI int $sync();
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCNAPI static void** $vftable();
89 // NOLINTEND
90};
91
92} // namespace Core
Definition FileOpenMode.h:7
Definition FileStdStreamBuf.h:13
MCAPI ::std::fpos<::_Mbstatet > $seekpos(::std::fpos<::_Mbstatet > pos, int)
MCAPI int _flushoutput()
static MCAPI void ** $vftable()
MCAPI ::std::fpos<::_Mbstatet > $seekoff(int64 off, int way, int)
MCAPI void open(::Core::File &&file, ::Core::FileOpenMode fileOpenMode)
static MCAPI uint64 const & DEFAULT_BUFFER_SIZE()
MCAPI int $overflow(int c)
Definition File.h:20
Definition Alias.h:14