MayaFlux
0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches
◆
remove_hooks_of_type()
void MayaFlux::Nodes::Generator::Logic::remove_hooks_of_type
(
LogicEventType
type
)
Definition at line
617
of file
Logic.cpp
.
618
{
619
auto
it = std::remove_if(
m_all_callbacks
.begin(),
m_all_callbacks
.end(),
620
[type](
const
LogicCallback& cb) {
621
return cb.event_type == type;
622
});
623
m_all_callbacks
.erase(it,
m_all_callbacks
.end());
624
}
MayaFlux::Nodes::Generator::Logic::m_all_callbacks
std::vector< LogicCallback > m_all_callbacks
Collection of all callback functions.
Definition
Logic.hpp:617
References
m_all_callbacks
.
MayaFlux
Nodes
Generator
Logic
Generated by
1.9.8