MCPcopy Create free account
hub / github.com/TankOs/SFGUI / operator()

Method operator()

src/SFGUI/Signal.cpp:31–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31void Signal::operator()() const {
32 if( !m_delegates ) {
33 return;
34 }
35
36 for( const auto& delegate : *m_delegates ) {
37 delegate.second();
38 }
39}
40
41void Signal::Disconnect( unsigned int serial ) {
42 if( !m_delegates ) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected