Keypop Calypso Card C++ API 2.0.0
Reference Calypso Card API for C++
FileHeader.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 <cstdint>
14#include <memory>
15#include <vector>
16
18
19namespace keypop {
20namespace calypso {
21namespace card {
22namespace card {
23
30public:
37 virtual uint16_t getLid() const = 0;
38
47 virtual const std::shared_ptr<uint8_t> getDfStatus() const = 0;
48
55 virtual ElementaryFile::Type getEfType() const = 0;
56
69 virtual int getRecordsNumber() const = 0;
70
84 virtual int getRecordSize() const = 0;
85
94 virtual const std::vector<uint8_t>& getAccessConditions() const = 0;
95
104 virtual const std::vector<uint8_t>& getKeyIndexes() const = 0;
105
115 virtual const std::shared_ptr<uint16_t> getSharedReference() const = 0;
116};
117
118} /* namespace card */
119} /* namespace card */
120} /* namespace calypso */
121} /* namespace keypop */
virtual const std::shared_ptr< uint16_t > getSharedReference() const =0
virtual int getRecordsNumber() const =0
virtual ElementaryFile::Type getEfType() const =0
virtual const std::shared_ptr< uint8_t > getDfStatus() const =0
virtual const std::vector< uint8_t > & getAccessConditions() const =0
virtual int getRecordSize() const =0
virtual const std::vector< uint8_t > & getKeyIndexes() const =0
virtual uint16_t getLid() const =0