initial version

This commit is contained in:
2016-07-15 15:00:49 +02:00
parent 888b4f8cc5
commit 43148f4d54
19 changed files with 837 additions and 0 deletions

16
misc/Debug.h Normal file
View File

@@ -0,0 +1,16 @@
#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