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

◆ set_default_processor()

void MayaFlux::Kakshya::PlotContainer::set_default_processor ( const std::shared_ptr< DataProcessor > &  processor)
overridevirtual

Set the default data processor for this container.

Parameters
processorShared pointer to the DataProcessor to use

Implements MayaFlux::Kakshya::SignalSourceContainer.

Definition at line 446 of file PlotContainer.cpp.

447{
448 if (m_processor)
449 m_processor->on_detach(shared_from_this());
450 m_processor = processor;
451 if (m_processor)
452 m_processor->on_attach(shared_from_this());
453}
std::shared_ptr< DataProcessor > m_processor

References m_processor.

Referenced by create_default_processor().

+ Here is the caller graph for this function: