17 lines
182 B
C++
17 lines
182 B
C++
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#include <QDebug>
|
|
|
|
class Debug {
|
|
|
|
public:
|
|
|
|
static void error(const std::string& err) {
|
|
qDebug(err.c_str());
|
|
throw err;
|
|
}
|
|
};
|
|
|
|
#endif // DEBUG_H
|