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) 2025 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 *
6 * https://opensource.org/licenses/MIT. *
7 * *
8 * SPDX-License-Identifier: MIT *
9 ******************************************************************************/
10
11#pragma once
12
13#include <memory>
14#include <string>
15
17
18namespace keypop {
19namespace reader {
20
22
32public:
38 enum Type {
45
52
59
66 };
67
74 virtual const std::string& getReaderName() const = 0;
75
82 virtual Type getType() const = 0;
83
99 virtual const std::shared_ptr<ScheduledCardSelectionsResponse>
101};
102
103} /* namespace reader */
104} /* namespace keypop */
virtual Type getType() const =0
virtual const std::string & getReaderName() const =0
virtual const std::shared_ptr< ScheduledCardSelectionsResponse > getScheduledCardSelectionsResponse() const =0