valentina/widgets/vapplication.h

15 lines
326 B
C
Raw Normal View History

#ifndef VAPPLICATION_H
#define VAPPLICATION_H
#include <QApplication>
2013-10-27 09:10:39 +01:00
class VApplication : public QApplication{
Q_OBJECT
public:
2013-10-27 09:10:39 +01:00
VApplication(int &argc, char ** argv): QApplication(argc, argv){}
virtual ~VApplication() {}
virtual bool notify(QObject * receiver, QEvent * event);
};
#endif // VAPPLICATION_H