| 70 | } |
| 71 | |
| 72 | list children( const Group &g ) |
| 73 | { |
| 74 | list result; |
| 75 | std::lock_guard<Group::Mutex> lock( g.mutex() ); |
| 76 | Group::ChildContainer::const_iterator it; |
| 77 | for( it=g.children().begin(); it!=g.children().end(); it++ ) |
| 78 | { |
| 79 | result.append( *it ); |
| 80 | } |
| 81 | return result; |
| 82 | } |
| 83 | |
| 84 | void bindGroup() |
| 85 | { |