| 18 | bool expanded() const { return _expanded; } |
| 19 | |
| 20 | unsigned int nPorts(PortType portType) const override |
| 21 | { |
| 22 | int out_port = _expanded ? 1 : 0; |
| 23 | return portType == PortType::In ? 1:out_port; |
| 24 | } |
| 25 | |
| 26 | virtual const char* className() const final { return Name(); } |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected