summaryrefslogtreecommitdiffstats
path: root/src/opcua/client/qopcuanode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/opcua/client/qopcuanode.h')
-rw-r--r--src/opcua/client/qopcuanode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/opcua/client/qopcuanode.h b/src/opcua/client/qopcuanode.h
index b41a318..390b1ad 100644
--- a/src/opcua/client/qopcuanode.h
+++ b/src/opcua/client/qopcuanode.h
@@ -98,9 +98,9 @@ public:
QString nodeId() const;
QOpcUaClient *client() const;
- bool callMethod(const QString &methodNodeId, const QVector<QOpcUa::TypedVariant> &args = QVector<QOpcUa::TypedVariant>());
+ bool callMethod(const QString &methodNodeId, const QList<QOpcUa::TypedVariant> &args = QList<QOpcUa::TypedVariant>());
- bool resolveBrowsePath(const QVector<QOpcUaRelativePathElement> &path);
+ bool resolveBrowsePath(const QList<QOpcUaRelativePathElement> &path);
bool browse(const QOpcUaBrowseRequest &request);
@@ -116,9 +116,9 @@ Q_SIGNALS:
void enableMonitoringFinished(QOpcUa::NodeAttribute attr, QOpcUa::UaStatusCode statusCode);
void disableMonitoringFinished(QOpcUa::NodeAttribute attr, QOpcUa::UaStatusCode statusCode);
void methodCallFinished(QString methodNodeId, QVariant result, QOpcUa::UaStatusCode statusCode);
- void browseFinished(QVector<QOpcUaReferenceDescription> children, QOpcUa::UaStatusCode statusCode);
- void resolveBrowsePathFinished(QVector<QOpcUaBrowsePathTarget> targets,
- QVector<QOpcUaRelativePathElement> path, QOpcUa::UaStatusCode statusCode);
+ void browseFinished(QList<QOpcUaReferenceDescription> children, QOpcUa::UaStatusCode statusCode);
+ void resolveBrowsePathFinished(QList<QOpcUaBrowsePathTarget> targets,
+ QList<QOpcUaRelativePathElement> path, QOpcUa::UaStatusCode statusCode);
private:
Q_DISABLE_COPY(QOpcUaNode)