DebugUtil.h 192 B

1234567891011
  1. #ifndef DEBUGUTIL_H
  2. #define DEBUGUTIL_H
  3. #include <QDebug>
  4. #ifndef NODEBUG
  5. #define Debug(x) qDebug() << #x << ":" << (x);
  6. #else
  7. #define Debug(x)
  8. #endif // DEBUG
  9. #endif // DEBUGUTIL_H