File indexing completed on 2024-06-23 05:14:11

0001 /*  smartcard/p15card.cpp
0002 
0003     This file is part of Kleopatra, the KDE keymanager
0004     SPDX-FileCopyrightText: 2021 g10 Code GmbH
0005     SPDX-FileContributor: Andre Heinecke <aheinecke@g10code.com>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #include "p15card.h"
0011 
0012 using namespace Kleo::SmartCard;
0013 
0014 // static
0015 const std::string P15Card::AppName = "p15";
0016 
0017 P15Card::P15Card(const Card &card)
0018     : Card(card)
0019 {
0020     setAppName(AppName);
0021 }