QtHPConnect/global.h

15 lines
277 B
C
Raw Normal View History

2019-02-10 14:32:15 +01:00
#ifndef GLOBAL_H
#define GLOBAL_H
2019-02-18 21:15:04 +01:00
#include "version.h"
#include "errorhandler.h"
2019-02-10 14:43:00 +01:00
class errorHandler;
extern errorHandler *main_err;
#define log(a) main_err->error(L7,0,QString(a),QString());
#define err(a,b,c) main_err->error(a,b,QString(c),QString());
2019-02-10 14:32:15 +01:00
2019-02-18 21:15:04 +01:00
2019-02-10 14:32:15 +01:00
#endif // GLOBAL_H
2019-02-10 14:43:00 +01:00