summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorJannis Voelker <jannis.voelker@basyskom.com>2018-05-04 09:26:00 +0200
committerFrank Meerkoetter <frank.meerkoetter@basyskom.com>2018-05-08 06:58:06 +0000
commit41eed0819cdbbb81c69277487e2070d61b6d943b (patch)
tree5ceaa7426265bda014f4dbbb73828f79cfb8f2d8 /config.tests
parenta1344b2406bfe7e5832a2df5188c77889fbba24e (diff)
Remove the freeopcua plugin
With the Qt OPC UA API being extended to cover more functionality from the OPC UA specification, the freeopcua plugin has become a liability because important features are not supported by the library. Change-Id: I22934d5dae93b89163086fd8bc402a51a9c5dd6a Reviewed-by: Frank Meerkoetter <frank.meerkoetter@basyskom.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/freeopcua/freeopcua.pro2
-rw-r--r--config.tests/freeopcua/main.cpp52
2 files changed, 0 insertions, 54 deletions
diff --git a/config.tests/freeopcua/freeopcua.pro b/config.tests/freeopcua/freeopcua.pro
deleted file mode 100644
index 9fc03c4..0000000
--- a/config.tests/freeopcua/freeopcua.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-SOURCES += main.cpp
-CONFIG += exceptions
diff --git a/config.tests/freeopcua/main.cpp b/config.tests/freeopcua/main.cpp
deleted file mode 100644
index a7008fb..0000000
--- a/config.tests/freeopcua/main.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 basysKom GmbH, opensource@basyskom.com
-** Contact: http://www.qt.io/licensing/
-**
-** This file is part of the QtOpcUa module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL3$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see http://www.qt.io/terms-conditions. For further
-** information use the contact form at http://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPLv3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or later as published by the Free
-** Software Foundation and appearing in the file LICENSE.GPL included in
-** the packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 2.0 requirements will be
-** met: http://www.gnu.org/licenses/gpl-2.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <opc/ua/node.h>
-#include <opc/ua/client/client.h>
-#include <opc/ua/server/server.h>
-#include <opc/ua/protocol/variant.h>
-#include <opc/ua/services/method.h>
-
-int main()
-{
- OpcUa::UaServer server(false);
- server.Start();
-
- OpcUa::UaClient client(false);
- client.Connect("opc.tcp://dummy:4711");
-
- return 0;
-}