#ifndef XAPPLICATION_H
#define XAPPLICATION_H
#include <QApplication>
class XApplication : public QApplication
{
public:
XApplication(int argc, char** argv);
virtual bool notify(QObject *receiver, QEvent *event);
};
#endif // XAPPLICATION_H