LeviLamina
Loading...
Searching...
No Matches
BigEndianStringByteOutput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/StringByteOutput.h"
7
9public:
10 using StringByteOutput::StringByteOutput;
11
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 // vIndex: 3
16 virtual void writeFloat(float v) /*override*/;
17
18 // vIndex: 4
19 virtual void writeDouble(double v) /*override*/;
20
21 // vIndex: 6
22 virtual void writeShort(short v) /*override*/;
23
24 // vIndex: 7
25 virtual void writeInt(int v) /*override*/;
26
27 // vIndex: 8
28 virtual void writeLongLong(int64 v) /*override*/;
29
30 // vIndex: 0
31 virtual ~BigEndianStringByteOutput() /*override*/;
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCFOLD void $dtor();
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI void $writeFloat(float v);
44
45 MCAPI void $writeDouble(double v);
46
47 MCAPI void $writeShort(short v);
48
49 MCAPI void $writeInt(int v);
50
51 MCAPI void $writeLongLong(int64 v);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition BigEndianStringByteOutput.h:8
Definition StringByteOutput.h:8