InnerNodeInfo Constructor and Destructor
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Description
Constructs/Destructs an InnerNodeInfo object.
Prototype
APIs taking string arguments will be deprecated in future releases. Use APIs taking non-string arguments instead.
1 2 3 4 5 6 7 8 9 10 | explicit InnerNodeInfo(const std::string &fusion_node_name); explicit InnerNodeInfo(const char_t *fusion_node_name); ATTRIBUTED_DEPRECATED(InnerNodeInfo(const char_t *, const char_t *, const char_t *)) InnerNodeInfo(const std::string &fusion_node_name, const std::string &name, const std::string &type); InnerNodeInfo(const char_t *fusion_node_name, const char_t *name, const char_t *type); InnerNodeInfo(InnerNodeInfo &&other) noexcept; InnerNodeInfo &operator=(InnerNodeInfo &&other) noexcept; InnerNodeInfo(const InnerNodeInfo &) = delete; InnerNodeInfo &operator=(const InnerNodeInfo &) = delete; ~InnerNodeInfo(); |
Parameters
None
Returns
An InnerNodeInfo object
Restrictions
None
Parent topic: Class InnerNodeInfo