summaryrefslogtreecommitdiffstats
path: root/include/ingen/ClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-12 02:28:21 +0000
committerDavid Robillard <d@drobilla.net>2012-03-12 02:28:21 +0000
commite9d9569271ee962c09ab66c6babed1ca5655a6c6 (patch)
treef77142b08c2bf2488eb382e993da1477c0b94307 /include/ingen/ClientInterface.hpp
parent7835b3d8c9b5b4a6f4959f56083d62826e6f7b8e (diff)
downloadingen-e9d9569271ee962c09ab66c6babed1ca5655a6c6.tar.gz
ingen-e9d9569271ee962c09ab66c6babed1ca5655a6c6.tar.bz2
ingen-e9d9569271ee962c09ab66c6babed1ca5655a6c6.zip
Unify event response mechanism and make it more appropriate for wire transmission.
The downside being more cryptic error messages until the client side error reporting stuff gets more fancy, but the important part is that belongs client side. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4053 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include/ingen/ClientInterface.hpp')
-rw-r--r--include/ingen/ClientInterface.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/ingen/ClientInterface.hpp b/include/ingen/ClientInterface.hpp
index a72c4743..0bed231c 100644
--- a/include/ingen/ClientInterface.hpp
+++ b/include/ingen/ClientInterface.hpp
@@ -25,6 +25,7 @@
#include "raul/URI.hpp"
#include "ingen/CommonInterface.hpp"
+#include "ingen/Status.hpp"
namespace Raul { class Path; }
@@ -40,9 +41,7 @@ class ClientInterface : public CommonInterface
public:
virtual ~ClientInterface() {}
- virtual void response_ok(int32_t id) = 0;
-
- virtual void response_error(int32_t id, const std::string& msg) = 0;
+ virtual void response(int32_t id, Status status) = 0;
virtual void error(const std::string& msg) = 0;