blob: 61b8ab71434c8d1bd7981bbf8688ed4424acad4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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 <utils/filepath.h>
#include <utils/storekey.h>
namespace Qdb::Internal {
enum class QdbTool {
FlashingWizard,
Qdb
};
Utils::FilePath findTool(QdbTool tool);
QString overridingEnvironmentVariable(QdbTool tool);
void showMessage(const QString &message, bool important = false);
Utils::Key settingsGroupKey();
Utils::Key settingsKey(QdbTool tool);
} // Qdb::Internal
|