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

◆ bind() [4/5]

Wiring & MayaFlux::Nexus::Wiring::bind ( std::string  attach_name,
std::function< void()>  attach,
std::string  detach_name,
std::function< void()>  detach 
)

Call named attach/detach functions.

Definition at line 211 of file Wiring.cpp.

214{
215 m_bind_attach_name = std::move(attach_name);
216 m_bind_attach = std::move(attach);
217 m_bind_detach_name = std::move(detach_name);
218 m_bind_detach = std::move(detach);
219 return *this;
220}
std::optional< std::function< void()> > m_bind_detach
Definition Wiring.hpp:319
std::string m_bind_attach_name
Definition Wiring.hpp:320
std::optional< std::function< void()> > m_bind_attach
Definition Wiring.hpp:318
std::string m_bind_detach_name
Definition Wiring.hpp:321

References m_bind_attach, m_bind_attach_name, m_bind_detach, and m_bind_detach_name.