----------------------------------------------------------------------------- Get a Group from the node's map -----------------------------------------------------------------------------
| 2908 | // Get a Group from the node's map |
| 2909 | //----------------------------------------------------------------------------- |
| 2910 | Group* Node::GetGroup |
| 2911 | ( |
| 2912 | uint8 const _groupIdx |
| 2913 | ) |
| 2914 | { |
| 2915 | map<uint8,Group*>::iterator it = m_groups.find( _groupIdx ); |
| 2916 | if( it == m_groups.end() ) |
| 2917 | { |
| 2918 | return NULL; |
| 2919 | } |
| 2920 | |
| 2921 | return it->second; |
| 2922 | } |
| 2923 | |
| 2924 | //----------------------------------------------------------------------------- |
| 2925 | // <Node::AddGroup> |