open62541pp 0.18.0
C++ wrapper of open62541
Loading...
Searching...
No Matches
nodesetloader.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4
5#include "open62541pp/config.hpp"
6
7#if UAPP_HAS_NODESETLOADER
8
9namespace opcua {
10
11class Server;
12class StatusCode;
13
14/**
15 * Load a nodeset from a NodeSet2.xml file at runtime.
16 * @param server The server to load the nodeset into.
17 * @param nodeset2XmlFilePath The path to the XML file.
18 */
19StatusCode loadNodeset(Server& server, std::string_view nodeset2XmlFilePath);
20
21} // namespace opcua
22
23#endif
High-level server class.
Definition server.hpp:136
UA_StatusCode wrapper class.
Definition types.hpp:47
StatusCode loadNodeset(Server &server, std::string_view nodeset2XmlFilePath)
Load a nodeset from a NodeSet2.xml file at runtime.