File indexing completed on 2025-01-18 10:07:40
0001
0002
0003
0004 #ifndef QTPREPROCESSORSUPPORT_H
0005 #define QTPREPROCESSORSUPPORT_H
0006
0007 #if 0
0008 #pragma qt_class(QtPreprocessorSupport)
0009 #pragma qt_sync_stop_processing
0010 #endif
0011
0012
0013
0014 #define QT_STRINGIFY2(x) #x
0015 #define QT_STRINGIFY(x) QT_STRINGIFY2(x)
0016
0017
0018
0019
0020 #define Q_UNUSED(x) (void)x;
0021
0022 #if !defined(Q_UNIMPLEMENTED)
0023 # define Q_UNIMPLEMENTED() qWarning("Unimplemented code.")
0024 #endif
0025
0026 #endif