LeviLamina
Loading...
Searching...
No Matches
StringAppendBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class StringAppendBuffer : public ::std::streambuf {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 StringAppendBuffer& operator=(StringAppendBuffer const&);
17 StringAppendBuffer(StringAppendBuffer const&);
18 StringAppendBuffer();
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual int overflow(int c) /*override*/;
24
25 virtual int64 xsputn(char const* s, int64 n) /*override*/;
26
27 virtual ~StringAppendBuffer() /*override*/;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCNAPI void $dtor();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCNAPI int $overflow(int c);
40
41 MCNAPI int64 $xsputn(char const* s, int64 n);
42
43
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCNAPI static void** $vftable();
50 // NOLINTEND
51};
52
53} // namespace Bedrock
static MCAPI void ** $vftable()
MCAPI int64 $xsputn(char const *s, int64 n)
MCAPI int $overflow(int c)
Definition Alias.h:14