aboutsummaryrefslogtreecommitdiff
path: root/libcontextsubscriber/sandbox/messaging-to-self/mythread.h
diff options
context:
space:
mode:
authorGergely Risko <gergely+context@risko.hu>2009-09-30 11:55:45 +0300
committerGergely Risko <gergely+context@risko.hu>2009-09-30 11:55:45 +0300
commite89d525a4eb0fc170a6412ddecd15d1fbfcb2aa5 (patch)
treed2fbf77b31092cc33c16652c21e26d1921c52cf7 /libcontextsubscriber/sandbox/messaging-to-self/mythread.h
parent1ed6bf54823ce541a55e6ce06508adf969b3d1d6 (diff)
Prepare for distributionerrge_0.3.7.2
Diffstat (limited to 'libcontextsubscriber/sandbox/messaging-to-self/mythread.h')
-rw-r--r--libcontextsubscriber/sandbox/messaging-to-self/mythread.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/libcontextsubscriber/sandbox/messaging-to-self/mythread.h b/libcontextsubscriber/sandbox/messaging-to-self/mythread.h
deleted file mode 100644
index 4170ccf8..00000000
--- a/libcontextsubscriber/sandbox/messaging-to-self/mythread.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef MYTHREAD_H
-#define MYTHREAD_H
-
-#include <QThread>
-#include <QDebug>
-#include "myobject.h"
-
-class MyThread : public QThread
-{
- Q_OBJECT
-
-private:
- MyObject *obj;
-
-public:
- MyThread(MyObject *obj) : obj(obj)
- {
- }
-
-protected:
- void run()
- {
- qDebug() << QThread::currentThread();
- obj->queueOnce("five");
- obj->queueOnce("six");
- obj->queueOnce("five");
- obj->queueOnce("five");
- obj->queueOnce("six");
- obj->queueOnce("seven");
- }
-};
-#endif