forked from qt-creator/qt-creator
Change-Id: Id9c9b316c5e0d39bc5fcba14951664e72d947a71 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
19 lines
556 B
C++
19 lines
556 B
C++
// Copyright (C) 2018 Sergey Morozov
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
namespace Cppcheck::Constants {
|
|
|
|
const char TEXTMARK_CATEGORY_ID[] = "Cppcheck";
|
|
|
|
const char OPTIONS_PAGE_ID[] = "Analyzer.Cppcheck.Settings";
|
|
|
|
const char CHECK_PROGRESS_ID[] = "Cppcheck.CheckingTask";
|
|
|
|
const char MANUAL_CHECK_PROGRESS_ID[] = "Cppcheck.ManualCheckingTask";
|
|
const char MANUAL_RUN_ACTION[] = "Cppcheck.ManualRun";
|
|
const char PERSPECTIVE_ID[] = "Cppcheck.Perspective";
|
|
|
|
} // Cppcheck::Constants
|