Standardize Doxygen documentation (#6885)

This commit is contained in:
DawnFire42 2026-05-21 16:58:07 -04:00 committed by GitHub
parent 03d54265fe
commit 33e0f8699b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
306 changed files with 539 additions and 487 deletions

View file

@ -1,8 +1,8 @@
/**
* @file filter_card.h
* @ingroup CardDatabaseModelFilters
* @brief TODO: Document this.
*/
//! \todo Document this file.
#ifndef CARDFILTER_H
#define CARDFILTER_H

View file

@ -1,8 +1,8 @@
/**
* @file filter_string.h
* @ingroup CardDatabaseModelFilters
* @brief TODO: Document this.
*/
//! \todo Document this file.
#ifndef FILTER_STRING_H
#define FILTER_STRING_H

View file

@ -1,8 +1,8 @@
/**
* @file filter_tree.h
* @ingroup CardDatabaseModelFilters
* @brief TODO: Document this.
*/
//! \todo Document this file.
#ifndef FILTERTREE_H
#define FILTERTREE_H
@ -70,28 +70,33 @@ public:
}
virtual void nodeChanged() const
{
if (parent() != nullptr)
if (parent() != nullptr) {
parent()->nodeChanged();
}
}
virtual void preInsertChild(const FilterTreeNode *p, int i) const
{
if (parent() != nullptr)
if (parent() != nullptr) {
parent()->preInsertChild(p, i);
}
}
virtual void postInsertChild(const FilterTreeNode *p, int i) const
{
if (parent() != nullptr)
if (parent() != nullptr) {
parent()->postInsertChild(p, i);
}
}
virtual void preRemoveChild(const FilterTreeNode *p, int i) const
{
if (parent() != nullptr)
if (parent() != nullptr) {
parent()->preRemoveChild(p, i);
}
}
virtual void postRemoveChild(const FilterTreeNode *p, int i) const
{
if (parent() != nullptr)
if (parent() != nullptr) {
parent()->postRemoveChild(p, i);
}
}
};