summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/dotnet/wrapper/lib/worker.h
diff options
context:
space:
mode:
authorJøger Hansegård <joger.hansegard@qt.io>2023-06-27 17:04:21 +0200
committerJøger Hansegård <joger.hansegard@qt.io>2023-06-28 09:10:50 +0200
commit4584dbdd7ebcd0a2087b335470585c366e30fb90 (patch)
treeb3269bfa73989768fd47b4b82bdef22440bbeb06 /examples/activeqt/dotnet/wrapper/lib/worker.h
parentc49552f22e59eac13392f38d9bc8f0085bff172a (diff)
Doc: remove ActiveQt Dot Net example
There are now better examples for .NET/Qt interop available, making these examples obsolete. Also, the Dot Net example could not be built with VS 2015 and later as they depended on the /clr:OldSyntax switch. Pick-to: 6.5 6.6 Change-Id: I235477d9c70b572814e8057316da26c320f42ff3 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/activeqt/dotnet/wrapper/lib/worker.h')
-rw-r--r--examples/activeqt/dotnet/wrapper/lib/worker.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/activeqt/dotnet/wrapper/lib/worker.h b/examples/activeqt/dotnet/wrapper/lib/worker.h
deleted file mode 100644
index 5dc52a2..0000000
--- a/examples/activeqt/dotnet/wrapper/lib/worker.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef WORKER_H
-#define WORKER_H
-
-#include <QObject>
-
-// native Qt/C++ class
-//! [0]
-class Worker : public QObject
-{
- Q_OBJECT
- Q_PROPERTY(QString statusString READ statusString WRITE setStatusString)
-public:
- Worker();
-
- QString statusString() const;
-
-public slots:
- void setStatusString(const QString &string);
-
-signals:
- void statusStringChanged(const QString &string);
-
-private:
- QString status;
-};
-//! [0]
-
-#endif // WORKER_H