summaryrefslogtreecommitdiff
path: root/navit/graphics/qt5/event_qt5.h
blob: f999d3a4601cc763df30e56623115872c0051691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <glib.h>
#include <QObject>

class qt5_navit_timer : public QObject
{
        Q_OBJECT
public:
        qt5_navit_timer(QObject * parent = 0);
        GHashTable *timer_type;
        GHashTable *timer_callback;
        GHashTable *watches;
protected:
        void timerEvent(QTimerEvent * event);
};


void
qt5_event_init(void);