blob: 5051b991cccf3af2983afd4f476de3a44c03f32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef METAOBJECTDUMP_H
#define METAOBJECTDUMP_H
#include <QtGlobal>
QT_FORWARD_DECLARE_STRUCT(QMetaObject);
QT_FORWARD_DECLARE_CLASS(QTextStream);
QTextStream &operator<<(QTextStream &str, const QMetaObject &o);
#endif
|