debug.h 139 B

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