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)
14 lines
232 B
C
14 lines
232 B
C
/**
|
|
* @file levenshtein.h
|
|
* @ingroup Core
|
|
*/
|
|
//! \todo Document this file.
|
|
|
|
#ifndef LEVENSHTEIN_H
|
|
#define LEVENSHTEIN_H
|
|
|
|
#include <QString>
|
|
|
|
int levenshteinDistance(const QString &s1, const QString &s2);
|
|
|
|
#endif // LEVENSHTEIN_H
|