MayaFlux 0.4.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 171 of file ProcessingArchitecture.hpp.

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

References m_token.