| 11248 | } |
| 11249 | |
| 11250 | void |
| 11251 | Node::runInputChangedCallback(int index) |
| 11252 | { |
| 11253 | std::string cb = getInputChangedCallback(); |
| 11254 | |
| 11255 | if ( !cb.empty() ) { |
| 11256 | _imp->runInputChangedCallback(index, cb); |
| 11257 | } |
| 11258 | } |
| 11259 | |
| 11260 | void |
| 11261 | Node::Implementation::runInputChangedCallback(int index, |
no test coverage detected