| 423 | } |
| 424 | |
| 425 | const set<param_direction_t> Group::getSymbolDirections(Symbol *symbol) const |
| 426 | { |
| 427 | set<param_direction_t> directions; |
| 428 | auto it = m_symbolDirections.find(symbol); |
| 429 | if (it != m_symbolDirections.end()) |
| 430 | { |
| 431 | directions = it->second; |
| 432 | } |
| 433 | |
| 434 | return directions; |
| 435 | } |
| 436 | |
| 437 | string Group::getDescription() const |
| 438 | { |
no test coverage detected