14 lines
303 B
C++
14 lines
303 B
C++
#ifndef EVENTFILTERWHEEL_H
|
|
#define EVENTFILTERWHEEL_H
|
|
|
|
#include<QObject>
|
|
|
|
class EventFilterWheel : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
explicit EventFilterWheel(QObject *parent = nullptr);
|
|
~EventFilterWheel();
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
};
|
|
#endif // EVENTFILTERWHEEL_H
|