diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-08 18:01:56 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2016-08-09 18:32:40 +0200 |
commit | 49e5d477a2b8faf410f871396dba97670aa242d9 (patch) | |
tree | 1f0e993b595d280d849e44f9e0e9aba12ed61af2 /include | |
parent | a2da17c8608d25f64239047d0ff497adb015e411 (diff) | |
download | libnitrokey-49e5d477a2b8faf410f871396dba97670aa242d9.tar.gz libnitrokey-49e5d477a2b8faf410f871396dba97670aa242d9.tar.bz2 |
Move manager instance to shared_ptr
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/NitrokeyManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/NitrokeyManager.h b/include/NitrokeyManager.h index 6fa096a..ca8ce78 100644 --- a/include/NitrokeyManager.h +++ b/include/NitrokeyManager.h @@ -19,7 +19,7 @@ namespace nitrokey { class NitrokeyManager { public: - static NitrokeyManager *instance(); + static shared_ptr <NitrokeyManager> instance(); bool first_authenticate(const char *pin, const char *temporary_password); bool write_HOTP_slot(uint8_t slot_number, const char *slot_name, const char *secret, uint8_t hotp_counter, @@ -81,11 +81,11 @@ namespace nitrokey { bool is_AES_supported(const char *user_password); + ~NitrokeyManager(); private: NitrokeyManager(); - ~NitrokeyManager(); - static NitrokeyManager *_instance; + static shared_ptr <NitrokeyManager> _instance; bool connected; std::shared_ptr<Device> device; |