| 998 | using internal::Connection; |
| 999 | |
| 1000 | std::unique_ptr<IConnection> createBusConnection() |
| 1001 | { |
| 1002 | auto interface = std::make_unique<internal::SdBus>(); |
| 1003 | return std::make_unique<internal::Connection>(std::move(interface), Connection::default_bus); |
| 1004 | } |
| 1005 | |
| 1006 | std::unique_ptr<IConnection> createBusConnection(const ServiceName& name) |
| 1007 | { |