MCPcopy Create free account
hub / github.com/SpartanJ/eepp / messagePost

Method messagePost

src/eepp/scene/node.cpp:107–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105}
106
107void Node::messagePost( const NodeMessage* Msg ) {
108 Node* node = this;
109 while ( NULL != node ) {
110 if ( node->onMessage( Msg ) )
111 break;
112 node = node->getParent();
113 }
114}
115
116Uint32 Node::onMessage( const NodeMessage* ) {
117 return 0;

Callers 5

sendMsgMethod · 0.80
sendMsgMethod · 0.80
setDraggingMethod · 0.80
onKeyDownMethod · 0.80

Calls 2

onMessageMethod · 0.45
getParentMethod · 0.45

Tested by

no test coverage detected