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

◆ remove_hook()

bool MayaFlux::Nodes::ChainNode::remove_hook ( const NodeHook callback)
inlineoverridevirtual

Removes a previously registered callback.

Parameters
callbackThe callback function to remove
Returns
True if the callback was found and removed, false otherwise

This method delegates to the target node's remove_hook method, removing the callback from the target node's notification system.

Reimplemented from MayaFlux::Nodes::Node.

Definition at line 100 of file NodeStructure.hpp.

101 {
102 return m_Target->remove_hook(callback);
103 }
std::shared_ptr< Node > m_Target
The downstream node that processes the source's output.