MayaFlux 0.4.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 465 of file PlotContainer.cpp.

466{
467 if (m_processor)
468 m_processor->on_detach(shared_from_this());
469 m_processor = processor;
470 if (m_processor)
471 m_processor->on_attach(shared_from_this());
472}
std::shared_ptr< DataProcessor > m_processor

References m_processor.

Referenced by create_default_processor().

+ Here is the caller graph for this function: