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

◆ remove_all_hooks()

void MayaFlux::Nodes::ChainNode::remove_all_hooks ( )
inlineoverridevirtual

Removes all registered callbacks.

This method delegates to the target node's remove_all_hooks method, clearing all callbacks from the target node's notification system. After calling this method, no callbacks will be triggered for this chain.

Reimplemented from MayaFlux::Nodes::Node.

Definition at line 125 of file NodeStructure.hpp.

126 {
127 m_Target->remove_all_hooks();
128 }
std::shared_ptr< Node > m_Target
The downstream node that processes the source's output.