aboutsummaryrefslogtreecommitdiffstats
path: root/Main.qml
blob: 2717895d3c194a58041045d4fbf44468c95789b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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
import Xpl2 // This should properly integrate with qmlls as well

ApplicationWindow {
    id: root

    height: 900
    title: "Bobink Demo"
    visible: true
    width: 800

    // Add your app here!
    // Look at deps/BobinkQtOpcUa/demo for an example.
}