AusweisApp2
SortedReaderModel.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
7 #include <QSortFilterProxyModel>
8 
9 namespace governikus
10 {
11 
13  : public QSortFilterProxyModel
14 {
15  Q_OBJECT
16 
17  protected:
18  [[nodiscard]] bool lessThan(const QModelIndex& source_left, const QModelIndex& source_right) const override;
19 
20  public Q_SLOTS:
21  void onDataChanged();
22 
23 
24 };
25 
26 } // namespace governikus
Definition: SortedReaderModel.h:14
void onDataChanged()
Definition: SortedReaderModel.cpp:28
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override
Definition: SortedReaderModel.cpp:11
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16