| 269 | |
| 270 | |
| 271 | Service::Service(DBus::Connection::Ptr con, LogWriter::Ptr lwr) |
| 272 | : DBus::Service(con, Constants::GenServiceName("sessions")), |
| 273 | logwr(std::move(lwr)) |
| 274 | { |
| 275 | logsrvprx = LogServiceProxy::Create(con); |
| 276 | logsrvprx->AttachInterface(con, Constants::GenInterface("sessions")); |
| 277 | } |
| 278 | |
| 279 | |
| 280 | Service::~Service() noexcept |
nothing calls this directly
no test coverage detected