| 9 | namespace BW |
| 10 | { |
| 11 | bool region::isConnectedTo(region *target) const |
| 12 | { |
| 13 | if ( target ) |
| 14 | return this->groupIndex == target->groupIndex; |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | bool region::isConnectedTo(u16 index) const |
| 19 | { |
no outgoing calls
no test coverage detected