MayaFlux 0.4.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 167 of file Wiring.cpp.

170{
171 m_bind_attach_name = std::move(attach_name);
172 m_bind_attach = std::move(attach);
173 m_bind_detach_name = std::move(detach_name);
174 m_bind_detach = std::move(detach);
175 return *this;
176}
std::optional< std::function< void()> > m_bind_detach
Definition Wiring.hpp:244
std::string m_bind_attach_name
Definition Wiring.hpp:245
std::optional< std::function< void()> > m_bind_attach
Definition Wiring.hpp:243
std::string m_bind_detach_name
Definition Wiring.hpp:246

References m_bind_attach, m_bind_attach_name, m_bind_detach, and m_bind_detach_name.