// Copyright (C) 2019 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include #include #include #include namespace ClangTools { namespace Internal { QPair getClangIncludeDirAndVersion(const Utils::FilePath &clangToolPath); enum class QueryFailMode{ Silent, Noisy }; QString queryVersion(const Utils::FilePath &clangToolPath, QueryFailMode failMode); class ClangTidyInfo { public: ClangTidyInfo(const Utils::FilePath &executablePath); QStringList defaultChecks; QStringList supportedChecks; }; class ClazyCheck { public: QString name; int level; QStringList topics; }; using ClazyChecks = QVector; class ClazyStandaloneInfo { public: ClazyStandaloneInfo(const Utils::FilePath &executablePath); QVersionNumber version; QStringList defaultChecks; ClazyChecks supportedChecks; }; } // namespace Internal } // namespace ClangTools