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
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCNAPI RoleChecker();
25
26 MCNAPI void checkRole(
27 ::std::string const& jsonCredentials,
28 ::std::function<void(::edu::Role, ::std::string const&, ::std::string const&)> callback
29 );
30
31 MCNAPI bool lookupInProgress() const;
32
33 MCNAPI ~RoleChecker();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCNAPI void* $ctor();
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47};
MCAPI void checkRole(::std::string const &jsonCredentials, ::std::function< void(::edu::Role, ::std::string const &, ::std::string const &)> callback)
MCAPI bool lookupInProgress() const
MCAPI RoleChecker()
MCAPI void $dtor()
MCAPI ~RoleChecker()
MCAPI void * $ctor()
Definition Alias.h:14