mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-12-02 08:33:00 +08:00
24 lines
438 B
C
24 lines
438 B
C
|
// Copyright (C) 2022 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
||
|
|
||
|
#ifndef QFUNCTIONPOINTER_H
|
||
|
#define QFUNCTIONPOINTER_H
|
||
|
|
||
|
#include <QtCore/qtconfigmacros.h>
|
||
|
|
||
|
#if 0
|
||
|
#pragma qt_class(QFunctionPointer)
|
||
|
#endif
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
|
||
|
typedef void (*QFunctionPointer)();
|
||
|
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
#endif // __cplusplus
|
||
|
|
||
|
#endif // QFUNCTIONPOINTER_H
|