Keypop Reader C++ API 2.0.0
Reference Reader API for C++
CardReaderEvent.hpp
Go to the documentation of this file.
1/**************************************************************************************************
2 * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * This program and the accompanying materials are made available under the *
5 * terms of the MIT License which is available at https://opensource.org/licenses/MIT. *
6 * *
7 * SPDX-License-Identifier: MIT *
8 **************************************************************************************************/
9
10#pragma once
11
12#include <memory>
13#include <string>
14
16
17namespace keypop {
18namespace reader {
19
21
31public:
37 enum Type {
44
51
58
65 };
66
73 virtual const std::string& getReaderName() const = 0;
74
81 virtual Type getType() const = 0;
82
96 virtual const std::shared_ptr<ScheduledCardSelectionsResponse>
98};
99
100} /* namespace reader */
101} /* namespace keypop */
virtual Type getType() const =0
virtual const std::string & getReaderName() const =0
virtual const std::shared_ptr< ScheduledCardSelectionsResponse > getScheduledCardSelectionsResponse() const =0