mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-11-15 19:48:02 +01:00
14 lines
277 B
C++
14 lines
277 B
C++
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
#include "version.h"
|
|
#include "errorhandler.h"
|
|
|
|
|
|
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());
|
|
|
|
|
|
#endif // GLOBAL_H
|
|
|