blob: a1691a2be8d3647d2f815ad00db31244f723a702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef JSONTOOLS_H
#define JSONTOOLS_H
#include <QFileInfo>
#include <QSet>
#include "common.h"
#include <optional>
namespace JsonTools {
bool savePreloadFile(QSet<PreloadEntry> preload, QString destFile);
std::optional<QSet<PreloadEntry>> getPreloadsFromQmlImportScannerOutput(QString output);
}; // namespace JsonTools
#endif
|