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 MCNAPI void fromString(::std::string const& expression);
23
24 MCNAPI ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy const&);
25
26 MCNAPI ::BlockDescriptorSerializer::TagsProxy& operator=(::BlockDescriptorSerializer::TagsProxy&&);
27
28 MCNAPI ::std::string const& toString() const;
29
30 MCNAPI ~TagsProxy();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38};
39
40} // namespace BlockDescriptorSerializer
Definition TagsProxy.h:7
MCAPI::BlockDescriptorSerializer::TagsProxy & operator=(::BlockDescriptorSerializer::TagsProxy const &)
MCAPI::std::string const & toString() const
MCAPI::BlockDescriptorSerializer::TagsProxy & operator=(::BlockDescriptorSerializer::TagsProxy &&)
MCAPI void fromString(::std::string const &expression)
Definition Alias.h:14