Keyple Util C++ Library 2.0.0
Reference Terminal Reader API for C++
ContactlessCardCommonProtocol.cpp
Go to the documentation of this file.
1/**************************************************************************************************
2 * Copyright (c) 2021 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * See the NOTICE file(s) distributed with this work for additional information regarding *
5 * copyright ownership. *
6 * *
7 * This program and the accompanying materials are made available under the terms of the Eclipse *
8 * Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0 *
9 * *
10 * SPDX-License-Identifier: EPL-2.0 *
11 **************************************************************************************************/
12
14
15namespace keyple {
16namespace core {
17namespace util {
18namespace protocol {
19
20const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::ISO_14443_4(
21 "ISO_14443_4");
22const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::NFC_A_ISO_14443_3A(
23 "NFC_A_ISO_14443_3A");
24const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::NFC_B_ISO_14443_3B(
25 "NFC_B_ISO_14443_3B");
26const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::NFC_F_JIS_6319_4(
27 "NFC_F_JIS_6319_4");
28const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::NFC_V_ISO_15693(
29 "NFC_V_ISO_15693");
30const ContactlessCardCommonProtocol ContactlessCardCommonProtocol::INNOVATRON_B_PRIME_CARD(
31 "INNOVATRON_B_PRIME_CARD");
32
33ContactlessCardCommonProtocol::ContactlessCardCommonProtocol(const std::string& name)
34: mName(name) {}
35
36const std::string& ContactlessCardCommonProtocol::getName() const
37{
38 return mName;
39}
40
41}
42}
43}
44}