debug.h 158 B

12345678910
  1. #ifndef DEBUG_H
  2. #define DEBUG_H
  3. #include <QDebug>
  4. // Debug Makro
  5. #define DEB(expr) \
  6. qDebug() << __PRETTY_FUNCTION__ << "\t" << expr
  7. #endif // DEBUG_H