1// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#ifndef CLANGPARSER_H
6#define CLANGPARSER_H
7
8#include <QString>
9
10namespace ClangParser {
11bool parse(const QString &workSpace, const QString &symbolLocation, const QString &language);
12bool parseSingleFile(const QString &filePath, const QString &symbolLocation);
13}
14#endif // CLANGPARSER_H
15