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 MCNAPI_C void checkRole(
26 ::std::string const& jsonCredentials,
27 ::std::function<void(::edu::Role, ::std::string const&, ::std::string const&)> callback
28 );
29 // NOLINTEND
30};
Definition Alias.h:14