| 29 | } |
| 30 | |
| 31 | bool isAnyConnection() const |
| 32 | { |
| 33 | EnumeratorConnection point = getConnectionEnumerator(); |
| 34 | while (point.next()) |
| 35 | { |
| 36 | if (point->isAnyConnection()) |
| 37 | return true; |
| 38 | } |
| 39 | return false; |
| 40 | } |
| 41 | |
| 42 | BaseGraphConnection* getConnectionByName(std::string_view _name, std::string_view _type = {}) |
| 43 | { |
no test coverage detected