mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-06 05:23:56 -07:00
Convert informal TODO and FIXME comments to Doxygen-recognized
\todo format.
- // TODO comments → //! \todo ...
- // FIXME comments → //! \todo ...
- /** @todo ... */ blocks → //! \todo ...
- @brief TODO: placeholders → //! \todo (moved outside doc blocks)
23 lines
604 B
C++
23 lines
604 B
C++
/**
|
|
* @file token_edit_model.h
|
|
* @ingroup CardDatabaseModels
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef COCKATRICE_TOKEN_EDIT_MODEL_H
|
|
#define COCKATRICE_TOKEN_EDIT_MODEL_H
|
|
|
|
#include "../card_database_display_model.h"
|
|
|
|
class TokenEditModel : public CardDatabaseDisplayModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TokenEditModel(QObject *parent = nullptr);
|
|
[[nodiscard]] int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
protected:
|
|
[[nodiscard]] bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
|
|
};
|
|
|
|
#endif // COCKATRICE_TOKEN_EDIT_MODEL_H
|