blob: 383431abf65f7fa681cf9e097469ae529f3bf012 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef DEBUG_FUNCTIONS_H
#define DEBUG_FUNCTIONS_H
#include <QMessageBox>
#include <QString>
void call_error(QString message);
void call_notice(QString message);
#endif // DEBUG_FUNCTIONS_H
|