AusweisApp
Lade ...
Suche ...
Keine Treffer
SortedReaderModel.h
gehe zur Dokumentation dieser Datei
1
5#pragma once
6
7#include <QSortFilterProxyModel>
8#include <QtQml/qqmlregistration.h>
9
10namespace governikus
11{
12
14 : public QSortFilterProxyModel
15{
17 QML_UNCREATABLE("Used by ReaderModel only")
19
20 protected:
21 [[nodiscard]] bool lessThan(const QModelIndex& source_left, const QModelIndex& source_right) const override;
22
23 public Q_SLOTS:
24 void onDataChanged();
25
26
27};
28
29} // namespace governikus
Definition SortedReaderModel.h:15
void onDataChanged()
Definition SortedReaderModel.cpp:27
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override
Definition SortedReaderModel.cpp:11
Implementation of GeneralAuthenticate response APDUs.
Definition CommandApdu.h:17
QSharedPointer< T > decodeObject(const QByteArray &pData, bool pLogging=true)
Template function for decoding an OpenSSL type from DER encoded QByteArray.
Definition ASN1TemplateUtil.h:114