LeviLamina
Loading...
Searching...
No Matches
QRCode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class QRCode {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 QRCode& operator=(QRCode const&);
17 QRCode(QRCode const&);
18 QRCode();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23#ifdef LL_PLAT_C
24 MCNAPI explicit QRCode(::std::string const& targetString);
25
26 MCNAPI ~QRCode();
27#endif
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI void* $ctor(::std::string const& targetString);
35#endif
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCNAPI void $dtor();
43#endif
44 // NOLINTEND
45};
46
47} // namespace Bedrock
Definition Alias.h:14