LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
springcardreaderunit.hpp
Go to the documentation of this file.
1
7#ifndef LOGICALACCESS_SPRINGCARDREADERUNIT_HPP
8#define LOGICALACCESS_SPRINGCARDREADERUNIT_HPP
9
11
12#include <string>
13#include <vector>
14#include <iostream>
15
16namespace logicalaccess
17{
21class LLA_READERS_PCSC_API SpringCardReaderUnit : public PCSCReaderUnit
22{
23 public:
27 explicit SpringCardReaderUnit(const std::string &name);
28
32 virtual ~SpringCardReaderUnit();
33
38 PCSCReaderUnitType getPCSCType() const override;
39
40 protected:
41 std::shared_ptr<CardProbe> createCardProbe() override;
42
43 std::shared_ptr<ResultChecker> createDefaultResultChecker() const override;
44};
45}
46
47#endif
The PC/SC reader unit class.
Definition: pcscreaderunit.hpp:23
The SpringCard reader unit class.
Definition: springcardreaderunit.hpp:22
Definition: asn1.hpp:9
PCSCReaderUnitType
The reader unit types.
Definition: pcscreaderunitconfiguration.hpp:54
PC/SC Reader unit.