2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2011-03-04 16:21:57 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-03-04 16:21:57 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMap>
|
2021-03-05 12:48:26 +01:00
|
|
|
#include <QString>
|
2011-03-04 16:21:57 +01:00
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
namespace Debugger::Internal {
|
2012-08-09 04:25:13 +02:00
|
|
|
|
2015-05-27 13:59:56 +02:00
|
|
|
class DebuggerRunParameters;
|
2021-03-05 12:48:26 +01:00
|
|
|
using SourcePathMap = QMap<QString, QString>;
|
2022-07-05 15:37:08 +02:00
|
|
|
|
2021-03-05 12:48:26 +01:00
|
|
|
/* Merge settings for an installed Qt (unless another setting
|
|
|
|
|
* is already in the map. */
|
|
|
|
|
SourcePathMap mergePlatformQtPath(const DebuggerRunParameters &sp, const SourcePathMap &in);
|
2011-03-04 16:21:57 +01:00
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
} // Debugger::Internal
|