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