summaryrefslogtreecommitdiffstats
path: root/tests/qtuitest/tst_qinputgenerator/nativeevent.h
blob: f3b95ef7cea9d1f6ce37163b3506364a5d56820d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef NATIVEEVENT_H
#define NATIVEEVENT_H

#include <QList>
#include <QPair>
#include <QString>

struct NativeEvent
{
    NativeEvent(void*);

    static bool isInteresting(void*);

    QString                        type;
    QList<QPair<QString,QString> > things;
};

#endif