1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef EDITDISTANCE_H
5#define EDITDISTANCE_H
6
7#include <QtCore/qset.h>
8#include <QtCore/qstring.h>
9
10QT_BEGIN_NAMESPACE
11
12int editDistance(const QString &s, const QString &t);
13QString nearestName(const QString &actual, const QSet<QString> &candidates);
14
15QT_END_NAMESPACE
16
17#endif
18

source code of qttools/src/qdoc/qdoc/editdistance.h