MayaFlux 0.1.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 157 of file ProcessingArchitecture.hpp.

158 {
159 auto node = std::make_shared<NodeType>(std::forward<Args>(args)...);
160 node->set_processing_token(m_token);
161 return node;
162 }

References m_token.