LeviLamina
Loading...
Searching...
No Matches
KeyManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/crypto/asymmetric/system/System.h"
7
8class KeyManager {
9public:
10 // member variables
11 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 KeyManager& operator=(KeyManager const&);
19 KeyManager(KeyManager const&);
20 KeyManager();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~KeyManager();
26
27 virtual bool isValid() const;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCNAPI KeyManager(::std::string const& publicKey, ::Crypto::Asymmetric::System system);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCNAPI void* $ctor(::std::string const& publicKey, ::Crypto::Asymmetric::System system);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI bool $isValid() const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
MCAPI void $dtor()
MCAPI bool $isValid() const
MCAPI void * $ctor(::std::string const &publicKey, ::Crypto::Asymmetric::System system)
static MCAPI void ** $vftable()
MCAPI KeyManager(::std::string const &publicKey, ::Crypto::Asymmetric::System system)
Definition Alias.h:14