mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-25 21:59:15 +01:00
13 lines
292 B
C++
13 lines
292 B
C++
#include "version.h"
|
|
#include "errorhandler.h"
|
|
|
|
#ifndef GLOBAL_H
|
|
#define GLOBAL_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
|
|
|