| 29 | } |
| 30 | |
| 31 | void Signal::operator()() const { |
| 32 | if( !m_delegates ) { |
| 33 | return; |
| 34 | } |
| 35 | |
| 36 | for( const auto& delegate : *m_delegates ) { |
| 37 | delegate.second(); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void Signal::Disconnect( unsigned int serial ) { |
| 42 | if( !m_delegates ) { |
nothing calls this directly
no outgoing calls
no test coverage detected