14 lines
287 B
C
14 lines
287 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#include <QDebug>
|
|
|
|
void debug_message_handler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
|
|
const QString& get_debug_str();
|
|
void open_debug_file();
|
|
void close_debug_file();
|
|
|
|
#define dout qDebug()
|
|
|
|
#endif // DEBUG_H
|