forked from qt-creator/qt-creator
21 lines
533 B
C
21 lines
533 B
C
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
||
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "utils_global.h"
|
||
|
|
|
||
|
|
QT_BEGIN_NAMESPACE
|
||
|
|
class QVersionNumber;
|
||
|
|
QT_END_NAMESPACE
|
||
|
|
|
||
|
|
namespace Utils {
|
||
|
|
|
||
|
|
class FilePath;
|
||
|
|
|
||
|
|
QTCREATOR_UTILS_EXPORT QVersionNumber clangdVersion(const FilePath &clangd);
|
||
|
|
QTCREATOR_UTILS_EXPORT bool checkClangdVersion(const FilePath &clangd, QString *error = nullptr);
|
||
|
|
QTCREATOR_UTILS_EXPORT QVersionNumber minimumClangdVersion();
|
||
|
|
|
||
|
|
} // namespace Utils
|