MayaFlux 0.3.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ create_node()

template<typename NodeType , typename... Args>
std::shared_ptr< NodeType > MayaFlux::Core::NodeProcessingHandle::create_node ( Args &&...  args)
inline

Create node with automatic token assignment.

Definition at line 170 of file ProcessingArchitecture.hpp.

171 {
172 auto node = std::make_shared<NodeType>(std::forward<Args>(args)...);
173 node->set_processing_token(m_token);
174 return node;
175 }

References m_token.