blob: a9b3b0b890d0df4ec4d3a8353af189f37bc9f827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include "../qmldesignerbase_global.h"
#include <utils/filepath.h>
namespace ProjectExplorer {
class Target;
}
namespace QmlDesigner {
class DesignerSettings;
namespace QmlPuppetPaths {
QMLDESIGNERBASE_EXPORT std::pair<Utils::FilePath, Utils::FilePath> qmlPuppetPaths(
ProjectExplorer::Target *target, const DesignerSettings &settings);
}
} // namespace QmlDesigner
|