aboutsummaryrefslogtreecommitdiff
path: root/sandbox/messaging-to-self/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/messaging-to-self/main.cpp')
-rw-r--r--sandbox/messaging-to-self/main.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/sandbox/messaging-to-self/main.cpp b/sandbox/messaging-to-self/main.cpp
deleted file mode 100644
index aafda83c..00000000
--- a/sandbox/messaging-to-self/main.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <QCoreApplication>
-#include <QDebug>
-#include <QThread>
-#include "myobject.h"
-#include "mythread.h"
-
-int main(int argc, char **argv)
-{
- QCoreApplication app(argc, argv);
-
- qDebug() << "main thread:" << QThread::currentThread();
-
- MyObject a;
- MyThread t(&a);
- t.start();
-
-// sleep(1);
-
- return app.exec();
-}