summaryrefslogtreecommitdiffstats
path: root/examples/activeqt/dotnet/wrapper/lib/networker.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/dotnet/wrapper/lib/networker.h')
-rw-r--r--examples/activeqt/dotnet/wrapper/lib/networker.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/activeqt/dotnet/wrapper/lib/networker.h b/examples/activeqt/dotnet/wrapper/lib/networker.h
deleted file mode 100644
index 0c5babb..0000000
--- a/examples/activeqt/dotnet/wrapper/lib/networker.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2015 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-// lib.h
-
-#pragma once
-
-#using <mscorlib.dll>
-using namespace System;
-
-//! [0]
-class Worker;
-
-// .NET class
-public __gc class netWorker
-{
-public:
- netWorker();
- ~netWorker();
-
- __property String *get_StatusString();
- __property void set_StatusString(String *string);
-
- __event void statusStringChanged(String *args);
-
-private:
- Worker *workerObject;
-};
-//! [0]