qDebugWrapper.h 303 B

1234567891011121314151617181920
  1. #ifndef QDEBUGWRAPPER_H
  2. #define QDEBUGWRAPPER_H
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. void qPrint(const char* msg);
  8. void qPrintEx(const char* file, unsigned short line, const char* msg);
  9. #define Q_PRINT(msg) qPrintEx(__FILE__, __LINE__, msg)
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif