mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-28 06:56:29 +08:00
22 lines
448 B
C
22 lines
448 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
||
|
#ifndef TASK192552_H
|
||
|
#define TASK192552_H
|
||
|
/*
|
||
|
<:: is not valid C++, but we want moc to treat it as < :: since this
|
||
|
is usually the intention
|
||
|
*/
|
||
|
|
||
|
#include <qobject.h>
|
||
|
|
||
|
class Task192552 : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
#ifdef Q_MOC_RUN
|
||
|
QList<::QObject*> m_objects;
|
||
|
#endif
|
||
|
};
|
||
|
#endif // TASK192552_H
|