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&);
26 FileStdStreamBuf(FileStdStreamBuf const&);
27 FileStdStreamBuf();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~FileStdStreamBuf() /*override*/;
33
34 virtual int underflow() /*override*/;
35
36 virtual int overflow(int c) /*override*/;
37
38 virtual ::std::fpos<::_Mbstatet> seekoff(int64 off, int way, int) /*override*/;
39
40 virtual ::std::fpos<::_Mbstatet> seekpos(::std::fpos<::_Mbstatet> pos, int) /*override*/;
41
42 virtual int sync() /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCNAPI int _flushoutput();
49
50 MCNAPI void open(::Core::File&& file, ::Core::FileOpenMode fileOpenMode);
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCNAPI static uint64 const& DEFAULT_BUFFER_SIZE();
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI int $underflow();
69
70 MCNAPI int $overflow(int c);
71
72 MCNAPI ::std::fpos<::_Mbstatet> $seekoff(int64 off, int way, int);
73
74 MCNAPI ::std::fpos<::_Mbstatet> $seekpos(::std::fpos<::_Mbstatet> pos, int);
75
76 MCNAPI int $sync();
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
87
88} // namespace Core
Definition FileOpenMode.h:7
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:22
Definition Alias.h:14