| 67 | using Ptr = std::shared_ptr<Handler>; |
| 68 | |
| 69 | [[nodiscard]] static Ptr Create(DBus::Connection::Ptr conn) |
| 70 | { |
| 71 | return Ptr(new Handler(conn)); |
| 72 | } |
| 73 | |
| 74 | #ifdef HAVE_TINYXML |
| 75 | XmlDocPtr Introspect() |
nothing calls this directly
no outgoing calls
no test coverage detected