-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

@ -95,6 +95,8 @@ protected:
{}
virtual Message _invoke_method(CallMessage &) = 0;
virtual bool _invoke_method_noreply(CallMessage &call) = 0;
InterfaceProxyTable _interfaces;
};
@ -164,6 +166,8 @@ public:
InterfaceProxy(const std::string &name);
Message invoke_method(const CallMessage &);
bool invoke_method_noreply(const CallMessage &call);
bool dispatch_signal(const SignalMessage &);

View file

@ -201,6 +201,8 @@ public:
private:
Message _invoke_method(CallMessage &);
bool _invoke_method_noreply(CallMessage &call);
bool handle_message(const Message &);