AusweisApp
Lade ...
Suche ...
Keine Treffer
ResetRetryCounterCommand.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include "BaseCardCommand.h"
8
9class test_ResetRetryCounterCommand;
10
11namespace governikus
12{
13
15 : public BaseCardCommand
16{
17 Q_OBJECT
18 friend class ::test_ResetRetryCounterCommand;
19
20 protected:
21 void internalExecute() override;
22 ~ResetRetryCounterCommand() override = default;
23
24 public:
25 explicit ResetRetryCounterCommand(QSharedPointer<CardConnectionWorker> pCardConnectionWorker);
26
27};
28
29} // namespace governikus
Definition: BaseCardCommand.h:23
Definition: ResetRetryCounterCommand.h:16
~ResetRetryCounterCommand() override=default
void internalExecute() override
Definition: ResetRetryCounterCommand.cpp:16
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16