FluentUI/src/NativeEventFilter.h
朱子楚\zhuzi 5afd2ec518 update
2023-04-11 23:12:31 +08:00

15 lines
321 B
C++

#ifndef NATIVEEVENTFILTER_H
#define NATIVEEVENTFILTER_H
#include <QObject>
#include <QAbstractNativeEventFilter>
class NativeEventFilter : public QAbstractNativeEventFilter
{
public:
bool nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result) override;
};
#endif // NATIVEEVENTFILTER_H