61 std::string interface;
66 if (
object.empty() || interface.empty() || name.empty())
68 if ((type == METHOD) && service.empty())
82 RemoteEntry(Type type_,
const std::string& service_,
const std::string& object_,
const std::string& interface_,
const std::string& name_)
83 : type(type_), service(service_), object(object_), interface(interface_), name(name_) {}
Method identified by a service, object, interface and method name itself.
Definition IpcCommon.h:90
Remote entry, which can be either a signal or method.
Definition IpcCommon.h:51