summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/EventHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/EventHandler.h')
-rw-r--r--src/uscxml/plugins/EventHandler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/uscxml/plugins/EventHandler.h b/src/uscxml/plugins/EventHandler.h
index 2b41ae5..8ac31b1 100644
--- a/src/uscxml/plugins/EventHandler.h
+++ b/src/uscxml/plugins/EventHandler.h
@@ -65,16 +65,17 @@ public:
virtual void send(const SendRequest& req) = 0;
virtual void runOnMainThread() {};
- void returnEvent(Event& event, bool external = false);
void returnErrorExecution(const std::string&);
void returnErrorCommunication(const std::string&);
+ void returnEvent(Event& event, bool internal = false);
protected:
InterpreterImpl* _interpreter;
Arabica::DOM::Element<std::string> _element;
std::string _invokeId;
std::string _type;
-
+
+
};
class USCXML_API EventHandler {