Keyple Card Calypso C++ Library - 3.2.2
Component of the Keyple C++ middleware
SecureRegularModeTransactionManagerAdapter.cpp
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2025 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * See the NOTICE file(s) distributed with this work for additional *
5 * information regarding copyright ownership. *
6 * *
7 * This program and the accompanying materials are made available under the *
8 * terms of the Eclipse Public License 2.0 which is available at *
9 * http://www.eclipse.org/legal/epl-2.0 *
10 * *
11 * SPDX-License-Identifier: EPL-2.0 *
12 ******************************************************************************/
13
14#include "keyple/card/calypso/SecureRegularModeTransactionManagerAdapter.hpp"
15
16#include <memory>
17
18namespace keyple {
19namespace card {
20namespace calypso {
21
22SecureRegularModeTransactionManagerAdapter::
23 SecureRegularModeTransactionManagerAdapter(
24 const std::shared_ptr<ProxyReaderApi>& cardReader,
25 const std::shared_ptr<CalypsoCardAdapter>& card,
26 const std::shared_ptr<SymmetricCryptoSecuritySettingAdapter>&
27 symmetricCryptoSecuritySetting)
28: TransactionManagerAdapter<SecureRegularModeTransactionManager>(
29 cardReader, card)
30, SecureSymmetricCryptoTransactionManagerAdapter(
31 cardReader, card, symmetricCryptoSecuritySetting)
32{
33}
34
35} /* namespace calypso */
36} /* namespace card */
37} /* namespace keyple */