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();
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ~KeyManager();
24
25 virtual bool isValid() const;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI KeyManager(::KeyManager const& rhs);
32
33 MCNAPI KeyManager(::std::string const& publicKey, ::Crypto::Asymmetric::System system);
34
35 MCNAPI ::KeyManager& operator=(::KeyManager const& rhs);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor(::KeyManager const& rhs);
42
43 MCNAPI void* $ctor(::std::string const& publicKey, ::Crypto::Asymmetric::System system);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCNAPI bool $isValid() const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
MCAPI void $dtor()
MCAPI::KeyManager & operator=(::KeyManager const &rhs)
MCAPI KeyManager(::KeyManager const &rhs)
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)
MCAPI void * $ctor(::KeyManager const &rhs)
Definition Alias.h:14