#ifndef APPLICATION_H #define APPLICATION_H #include class Application : public QApplication { Q_OBJECT public: explicit Application(int & argc, char ** argv); bool notify(QObject *o, QEvent *e); signals: public slots: protected: virtual void customEvent ( QEvent * event ); void exception(QThread *t,QObject *o, QEvent *e,const QString &message); void exception(QObject *o, QEvent *e,const QString &message); }; #endif // APPLICATION_H