summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/openkode/qopenkodeeventloopintegration.h
blob: ef0464000bb8f3a6e01f483855bc0b82ae3eedc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef QOPENKODEEVENTLOOPINTEGRATION_H
#define QOPENKODEEVENTLOOPINTEGRATION_H

#include <QtGui/QPlatformEventLoopIntegration>

class KDThread;
class QOpenKODEEventLoopIntegration : public QPlatformEventLoopIntegration
{
public:
    QOpenKODEEventLoopIntegration();
    void processEvents(qint64 msec);
    void wakeup();
private:
    KDThread *m_kdThread;
};

#endif // QOPENKODEEVENTLOOPINTEGRATION_H