123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #ifndef QWAYLANDCLIENTEXPORT_H
- #define QWAYLANDCLIENTEXPORT_H
- #include <QtCore/qglobal.h>
- QT_BEGIN_NAMESPACE
- #if !defined(Q_WAYLAND_CLIENT_EXPORT)
- # if defined(QT_SHARED)
- # define Q_WAYLAND_CLIENT_EXPORT Q_DECL_EXPORT
- # else
- # define Q_WAYLAND_CLIENT_EXPORT
- # endif
- #endif
- QT_END_NAMESPACE
- #endif
|