// // Created by Tobias Hieta on 07/03/16. // #ifndef PLEXMEDIAPLAYER_EVENTFILTER_H #define PLEXMEDIAPLAYER_EVENTFILTER_H #include #include class EventFilter : public QObject { Q_OBJECT public: explicit EventFilter(QObject* parent = nullptr) : QObject(parent) {} protected: bool eventFilter(QObject* watched, QEvent* event) override; }; #endif //PLEXMEDIAPLAYER_EVENTFILTER_H