Class Node
Defined in File node.hpp
Class Documentation
-
class Node
class which represents a node
Public Functions
-
Node(const NodeName_t &nodeName) noexcept
constructor which requires the name of the node
- Parameters:
nodeName – [in] name of the node
-
~Node() noexcept
destructor
-
Node &operator=(Node &&rhs) noexcept
move assignment operator
- Parameters:
rhs – [in] source object, where to move from
-
NodeName_t getNodeName() const noexcept
returns the name of the node
- Returns:
string which contains the node name
-
RuntimeName_t getRuntimeName() const noexcept
returns the name of the application’s runtime
- Returns:
string which contains the runtime name
-
Node(const NodeName_t &nodeName) noexcept