MCPcopy Create free account
hub / github.com/TankOs/SFGUI / Signal

Method Signal

src/SFGUI/Signal.cpp:12–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10namespace sfg {
11
12Signal::Signal( Signal&& other ) :
13 m_delegates( std::move( other.m_delegates ) )
14{
15}
16
17Signal& Signal::operator=( Signal&& other ) {
18 m_delegates = std::move( other.m_delegates );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected