LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
proxlitechip.hpp
Go to the documentation of this file.
1
7#ifndef LOGICALACCESS_PROXLITECHIP_HPP
8#define LOGICALACCESS_PROXLITECHIP_HPP
9
11#include <logicalaccess/plugins/cards/proxlite/lla_cards_proxlite_api.hpp>
12#include <string>
13#include <vector>
14#include <iostream>
15
16namespace logicalaccess
17{
18#define CHIP_PROXLITE "ProxLite"
19
23class LLA_CARDS_PROXLITE_API ProxLiteChip : public Chip
24{
25 public:
30
34 virtual ~ProxLiteChip();
35
40 std::string getGenericCardType() const override
41 {
42 return CHIP_PROXLITE;
43 }
44
49 std::shared_ptr<LocationNode> getRootLocationNode() override;
50};
51}
52
53#endif
Chip descriptor.
The base chip class for all chip. Each chip have is own object and providers according to himself and...
Definition: chip.hpp:37
The Prox Lite base chip class.
Definition: proxlitechip.hpp:24
std::string getGenericCardType() const override
Get the generic card type.
Definition: proxlitechip.hpp:40
Definition: asn1.hpp:9
#define CHIP_PROXLITE
Definition: proxlitechip.hpp:18