diff options
author | Elie Tournier <tournier.elie@gmail.com> | 2017-04-18 13:38:34 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2017-05-25 15:15:31 +0200 |
commit | af1e72475cc3f1cfc7cadece162e2231610c8cd0 (patch) | |
tree | 4907b5aaf981c8e5984db0957b487afb4c7f08e9 /include/device.h | |
parent | 2428f3ad0a5542a996c16ef80fd7bbd2be5bb5c6 (diff) | |
download | libnitrokey-af1e72475cc3f1cfc7cadece162e2231610c8cd0.tar.gz libnitrokey-af1e72475cc3f1cfc7cadece162e2231610c8cd0.tar.bz2 |
Rename devices: s/Stick10/Device_NKPro and s/Stick20/Device_NKStorage
Signed-off-by: Elie Tournier <tournier.elie@gmail.com>
Diffstat (limited to 'include/device.h')
-rw-r--r-- | include/device.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/device.h b/include/device.h index 8bc661a..b928dc2 100644 --- a/include/device.h +++ b/include/device.h @@ -127,15 +127,15 @@ protected: static std::chrono::milliseconds default_delay ; }; -class Stick10 : public Device { +class Device_NKPro : public Device { public: - Stick10(); + Device_NKPro(); }; -class Stick20 : public Device { +class Device_NKStorage : public Device { public: - Stick20(); + Device_NKStorage(); }; } } |