LeviLamina
Loading...
Searching...
No Matches
MutsVerifier.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/certificates/ResponseVerifier.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11// clang-format on
12
13class MutsVerifier : public ::ResponseVerifier {
14public:
15 // member variables
16 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 MutsVerifier& operator=(MutsVerifier const&);
28 MutsVerifier(MutsVerifier const&);
29 MutsVerifier();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_S
35 virtual ~MutsVerifier() /*override*/ = default;
36#else // LL_PLAT_C
37 virtual ~MutsVerifier() /*override*/;
38#endif
39
40 virtual void setRequest(::Json::Value& request) /*override*/;
41
42 virtual ::std::optional<::Json::Value> verify(::Json::Value&& response) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI_C void* $ctor(
55 ::std::string responseField,
56 ::std::string payloadField,
57 ::std::string publicKey,
58 ::std::function<int64()> getTime,
59 ::std::function<::std::string()> createRequestId
60 );
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI void $dtor();
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72#ifdef LL_PLAT_C
73 MCNAPI void $setRequest(::Json::Value& request);
74
75 MCNAPI ::std::optional<::Json::Value> $verify(::Json::Value&& response);
76#endif
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
Definition Value.h:16
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition ResponseVerifier.h:10
Definition Alias.h:14