summaryrefslogtreecommitdiffstats
path: root/test/src/scxml-test-framework-client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/scxml-test-framework-client.cpp')
-rw-r--r--test/src/scxml-test-framework-client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/src/scxml-test-framework-client.cpp b/test/src/scxml-test-framework-client.cpp
index 0441c0e..8fbdf75 100644
--- a/test/src/scxml-test-framework-client.cpp
+++ b/test/src/scxml-test-framework-client.cpp
@@ -105,7 +105,7 @@ public:
}
- void httpRecvRequest(const uscxml::HTTPServer::Request& request) {
+ bool httpRecvRequest(const uscxml::HTTPServer::Request& request) {
// uscxml::HTTPServer::Reply httpReply(request);
// uscxml::HTTPServer::reply(httpReply);
@@ -144,7 +144,7 @@ public:
_interpreters[token] = std::make_pair(interpreter, request);
interpreter.start();
}
- return;
+ return true;
}
if(jsonReq.compound.find("event") != jsonReq.compound.end()) {
@@ -160,7 +160,7 @@ public:
_interpreters[token].second = request;
_interpreters[token].first.receive(event);
}
-
+ return true;
}
void setURL(const std::string& url) {