LeviLamina
Loading...
Searching...
No Matches
RoleChecker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/certificates/identity/edu/Role.h"
7
8class RoleChecker {
9public:
10 // member variables
11 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 RoleChecker& operator=(RoleChecker const&);
19 RoleChecker(RoleChecker const&);
20 RoleChecker();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25#ifdef LL_PLAT_C
26 MCNAPI void checkRole(
27 ::std::string const& jsonCredentials,
28 ::std::function<void(::edu::Role, ::std::string const&, ::std::string const&)> callback
29 );
30#endif
31 // NOLINTEND
32};
Definition Alias.h:14