aboutsummaryrefslogtreecommitdiff
path: root/sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp')
-rw-r--r--sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp b/sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp
deleted file mode 100644
index 1a1727b7..00000000
--- a/sandbox/multithreading-tests/wait-for-subscription-only-in-thread/main.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <contextproperty.h>
-
-#include "thread.h"
-
-#include <QCoreApplication>
-#include <QThread>
-
-int main(int argc, char** argv)
-{
- QCoreApplication app(argc, argv);
-
- qDebug() << "MAIN THREAD:" << QCoreApplication::instance()->thread();
-
- // Start a thread which will create the ContextProperty.
- Thread thread;
- thread.start();
-
- qDebug() << "Entering main loop";
- return app.exec();
-}