| 91 | } |
| 92 | |
| 93 | inline PathMatcher::Node *PathMatcher::Node::child( const Name &name ) |
| 94 | { |
| 95 | ChildMapIterator it = children.find( name ); |
| 96 | if( it != children.end() ) |
| 97 | { |
| 98 | return it->second.get(); |
| 99 | } |
| 100 | return nullptr; |
| 101 | } |
| 102 | |
| 103 | inline const PathMatcher::Node *PathMatcher::Node::child( const Name &name ) const |
| 104 | { |