Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
deck_list_style_proxy.h
Go to the documentation of this file.
1#ifndef COCKATRICE_DECK_LIST_STYLE_PROXY_H
2#define COCKATRICE_DECK_LIST_STYLE_PROXY_H
3
4#include <QIdentityProxyModel>
5
6class DeckListStyleProxy : public QIdentityProxyModel
7{
8 Q_OBJECT
9public:
10 using QIdentityProxyModel::QIdentityProxyModel;
11
12 [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override;
13};
14
15#endif // COCKATRICE_DECK_LIST_STYLE_PROXY_H
Definition deck_list_style_proxy.h:7
QVariant data(const QModelIndex &index, int role) const override
Definition deck_list_style_proxy.cpp:8