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
toni 625f5fe04d updated sensors and filter to current code version
removed KLib stuff
added new activity
filter is uncommand!
at the moment, the app is not able to load new maps and breaks using old maps
2018-07-12 18:39:27 +02:00

17 lines
200 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