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
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 TagsProxy(TagsProxy const&);
17 TagsProxy();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCFOLD void fromString(::std::string const& expression);
23
24 MCFOLD ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy const&);
25
26 MCFOLD ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy&&);
27
28 MCAPI ~TagsProxy();
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36};
37
38} // namespace BlockDescriptorSerializer
Definition TagsProxy.h:7
Definition Alias.h:14