| 45 | } |
| 46 | |
| 47 | shared_ptr<ConnectorNode> newConnectorNode( |
| 48 | const string& model, |
| 49 | shared_ptr<ReactorBase> r0, shared_ptr<ReactorBase> r1, const string& name) |
| 50 | { |
| 51 | return shared_ptr<ConnectorNode>( |
| 52 | ConnectorFactory::factory()->create(model, r0, r1, name)); |
| 53 | } |
| 54 | |
| 55 | shared_ptr<FlowDevice> newFlowDevice( |
| 56 | const string& model, |
no test coverage detected