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
kazu 719a66937e fixed android setup
added missing c++11 methods
2016-07-15 15:49:58 +02:00

17 lines
194 B
C++

#ifndef NAV_DEBUG_H
#define NAV_DEBUG_H
#include <QDebug>
class Debug {
public:
static void error(const std::string& err) {
qDebug(err.c_str());
throw err;
}
};
#endif // NAV_DEBUG_H