QtHPConnect/global.h

15 lines
277 B
C
Raw Normal View History

2019-02-10 15:32:15 +02:00
#ifndef GLOBAL_H
#define GLOBAL_H
2019-02-18 22:15:04 +02:00
#include "version.h"
#include "errorhandler.h"
2019-02-10 15:43:00 +02: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 15:32:15 +02:00
2019-02-18 22:15:04 +02:00
2019-02-10 15:32:15 +02:00
#endif // GLOBAL_H
2019-02-10 15:43:00 +02:00