1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef PROPERTYPRINTER_H
5#define PROPERTYPRINTER_H
6
7#include <qglobal.h>
8#include <qlist.h>
9#include <qpair.h>
10#include <qstring.h>
11
12#include <functional>
13
14QT_BEGIN_NAMESPACE
15
16using PropertyPrinter = std::function<void(const QList<QPair<QString, QString>> &)>;
17void qmakePropertyPrinter(const QList<QPair<QString, QString>> &values);
18void jsonPropertyPrinter(const QList<QPair<QString, QString>> &values);
19
20QT_END_NAMESPACE
21
22#endif // PROPERTYPRINTER_H
23

source code of qtbase/qmake/propertyprinter.h