2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-12-10 14:37:32 +01:00
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
2018-07-10 15:53:51 +02:00
|
|
|
const char GENERATE_COMPILATION_DB[] = "ClangCodeModel.GenerateCompilationDB";
|
2015-08-31 16:28:26 +02:00
|
|
|
const char CLANG_ERROR[] = "Clang.Error";
|
|
|
|
|
const char CLANG_WARNING[] = "Clang.Warning";
|
2015-05-08 15:48:17 +02:00
|
|
|
|
2018-04-12 14:49:07 +02:00
|
|
|
const char TASK_CATEGORY_DIAGNOSTICS[] = "ClangCodeModel";
|
|
|
|
|
|
2015-11-27 16:02:38 +01:00
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace ClangCodeModel
|