This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/misc/Debug.h
2016-07-15 15:00:49 +02:00

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