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
17 lines
200 B
C++
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
|