blob: 1598bb8942500dbc359521822184d8b781ba4770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Main.qml — Demo app for Bobink library.
// Connects to an OPC UA server, then pushes NodePage for node interaction.
import QtQuick
import QtQuick.Controls
import Bobink // This should properly integrate with qmlls
ApplicationWindow {
id: root
height: 900
title: "Bobink Demo"
visible: true
width: 800
// Add your app here!
// Look at deps/BobinkQtOpcUa/demo for an example.
}
|