summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/dotnet/wrapper/lib/worker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/dotnet/wrapper/lib/worker.cpp')
-rw-r--r--examples/activeqt/dotnet/wrapper/lib/worker.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/activeqt/dotnet/wrapper/lib/worker.cpp b/examples/activeqt/dotnet/wrapper/lib/worker.cpp
deleted file mode 100644
index b11c7e5..0000000
--- a/examples/activeqt/dotnet/wrapper/lib/worker.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include "worker.h"
-#include "tools.h"
-
-Worker::Worker()
-{
- status = "Idle";
-}
-
-void Worker::setStatusString(const QString &string)
-{
- status = string;
- emit statusStringChanged(status);
-}
-
-QString Worker::statusString() const
-{
- return status;
-}