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 close();
51
52 MCNAPI bool isOpen() const;
53
54 MCNAPI void open(::Core::File&& file, ::Core::FileOpenMode fileOpenMode);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCNAPI int $underflow();
67
68 MCNAPI int $overflow(int c);
69
70 MCNAPI ::std::fpos<::_Mbstatet> $seekoff(int64 off, int way, int);
71
72 MCNAPI ::std::fpos<::_Mbstatet> $seekpos(::std::fpos<::_Mbstatet> pos, int);
73
74 MCNAPI int $sync();
75
76
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCNAPI static void** $vftable();
83 // NOLINTEND
84};
85
86} // 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)
MCAPI bool isOpen() const
MCAPI int $overflow(int c)
Definition File.h:20
Definition Alias.h:14