File indexing completed on 2024-05-19 15:45:09

0001 /*
0002     SPDX-FileCopyrightText: 2014 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef CMAKEPARSEJOB_H
0008 #define CMAKEPARSEJOB_H
0009 
0010 #include <language/backgroundparser/parsejob.h>
0011 
0012 class CMakeParseJob : public KDevelop::ParseJob
0013 {
0014     Q_OBJECT
0015     public:
0016         explicit CMakeParseJob(const KDevelop::IndexedString& url, KDevelop::ILanguageSupport* languageSupport);
0017 
0018         void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override;
0019 };
0020 
0021 #endif // CMAKEPARSEJOB_H