1234567891011121314151617181920 |
- #ifndef QDEBUGWRAPPER_H
- #define QDEBUGWRAPPER_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- void qPrint(const char* msg);
- void qPrintEx(const char* file, unsigned short line, const char* msg);
- #define Q_PRINT(msg) qPrintEx(__FILE__, __LINE__, msg)
- #ifdef __cplusplus
- }
- #endif
- #endif
|