valentina/widgets/vapplication.h
dismine 3b908ae328 Refactoring.
--HG--
branch : develop
2013-10-27 10:10:39 +02:00

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