Constructors
Declared in <key.h>
Construct an empty, invalid private key.
constexpr
CKey() noexcept = default;
» more...
Copy-construct a private key from another.
CKey(CKey const& other);
» more...
Move-construct a private key from another.
constexpr
CKey(CKey&& other) noexcept = default;
» more...
| Name | Description |
|---|---|
| other | The key to copy from. |