mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-13 09:34:47 -07:00
* Sort *every* file into a doxygen group. Took 7 hours 9 minutes Took 18 seconds Took 2 minutes * Lint some ingroup definitions. Took 10 minutes Took 2 seconds * Just include the groups in the Doxyfile in this commit. Took 3 minutes * Update some group comments so they link! Took 14 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
23 lines
595 B
C++
23 lines
595 B
C++
/**
|
|
* @file token_display_model.h
|
|
* @ingroup CardDatabaseModels
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef COCKATRICE_TOKEN_DISPLAY_MODEL_H
|
|
#define COCKATRICE_TOKEN_DISPLAY_MODEL_H
|
|
|
|
#include "../card_database_display_model.h"
|
|
|
|
class TokenDisplayModel : public CardDatabaseDisplayModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TokenDisplayModel(QObject *parent = nullptr);
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
protected:
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
|
|
};
|
|
|
|
#endif // COCKATRICE_TOKEN_DISPLAY_MODEL_H
|