LeviLamina
Loading...
Searching...
No Matches
TextDataPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct TextDataPayload {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mText;
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
14 TextDataPayload(TextDataPayload const&);
15 TextDataPayload();
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCFOLD ::TextDataPayload& operator=(::TextDataPayload&&);
21
22 MCFOLD ::TextDataPayload& operator=(::TextDataPayload const&);
23
24 MCAPI ~TextDataPayload();
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32};