valentina/widgets/vapplication.h

16 lines
327 B
C
Raw Normal View History

#ifndef VAPPLICATION_H
#define VAPPLICATION_H
#include <QApplication>
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