3b908ae328
--HG-- branch : develop
15 lines
326 B
C++
15 lines
326 B
C++
#ifndef VAPPLICATION_H
|
|
#define VAPPLICATION_H
|
|
|
|
#include <QApplication>
|
|
|
|
class VApplication : public QApplication{
|
|
Q_OBJECT
|
|
public:
|
|
VApplication(int &argc, char ** argv): QApplication(argc, argv){}
|
|
virtual ~VApplication() {}
|
|
virtual bool notify(QObject * receiver, QEvent * event);
|
|
};
|
|
|
|
#endif // VAPPLICATION_H
|