/** * @file levenshtein.h * @ingroup Core */ //! \todo Document this file. #ifndef LEVENSHTEIN_H #define LEVENSHTEIN_H #include int levenshteinDistance(const QString &s1, const QString &s2); #endif // LEVENSHTEIN_H