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 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31 MCNAPI int $overflow(int c);
32
33 MCNAPI int64 $xsputn(char const* s, int64 n);
34
35
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
44
45} // namespace Bedrock
static MCAPI void ** $vftable()
MCAPI int64 $xsputn(char const *s, int64 n)
MCAPI int $overflow(int c)
Definition Alias.h:14