1 | // Copyright (C) 2021 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
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 | |
14 | QT_BEGIN_NAMESPACE |
15 | |
16 | using PropertyPrinter = std::function<void(const QList<QPair<QString, QString>> &)>; |
17 | void qmakePropertyPrinter(const QList<QPair<QString, QString>> &values); |
18 | void jsonPropertyPrinter(const QList<QPair<QString, QString>> &values); |
19 | |
20 | QT_END_NAMESPACE |
21 | |
22 | #endif // PROPERTYPRINTER_H |
23 |