LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
pcsccontroldatatransport.hpp
Go to the documentation of this file.
1//
2// Created by xaqq on 7/31/15.
3//
4
5#ifndef LIBLOGICALACCESS_PCSC_CTL_DATATRANSPORT_HPP
6#define LIBLOGICALACCESS_PCSC_CTL_DATATRANSPORT_HPP
7
8
10
11namespace logicalaccess
12{
13
20class LLA_READERS_PCSC_API PCSCControlDataTransport : public PCSCDataTransport
21{
22
23 public:
28 std::string getTransportType() const override
29 {
30 return "PCSCControl";
31 }
32
33 void send(const ByteVector &data) override;
34};
35}
36
37
38#endif // LIBLOGICALACCESS_PCSC_CTL_DATATRANSPORT_HPP
Definition: pcsccontroldatatransport.hpp:21
std::string getTransportType() const override
Get the transport type of this instance.
Definition: pcsccontroldatatransport.hpp:28
An PCSC data transport class.
Definition: pcscdatatransport.hpp:22
std::vector< uint8_t > ByteVector
Definition: lla_fwd.hpp:80
Definition: asn1.hpp:9
PC/SC transport for reader/card commands.