| 51 | } |
| 52 | |
| 53 | Effect* |
| 54 | Group::getNode(const QString& fullySpecifiedName) const |
| 55 | { |
| 56 | if ( !_collection.lock() ) { |
| 57 | return 0; |
| 58 | } |
| 59 | NodePtr node = _collection.lock()->getNodeByFullySpecifiedName( fullySpecifiedName.toStdString() ); |
| 60 | if ( node && node->isActivated() ) { |
| 61 | return new Effect(node); |
| 62 | } else { |
| 63 | return NULL; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | std::list<Effect*> |
| 68 | Group::getChildren() const |
nothing calls this directly
no test coverage detected