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