-support noreply messages in the library

-> not yet in the XML file
This commit is contained in:
Andreas Volz 2008-09-10 00:14:38 +02:00
parent bbca1b0acc
commit f51dc1bf4c
6 changed files with 30 additions and 1 deletions

View file

@ -157,3 +157,13 @@ Message InterfaceProxy::invoke_method(const CallMessage &call)
return _invoke_method(call2);
}
bool InterfaceProxy::invoke_method_noreply(const CallMessage &call)
{
CallMessage &call2 = const_cast<CallMessage &>(call);
if (call.interface() == NULL)
call2.interface(name().c_str());
return _invoke_method_noreply(call2);
}