summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/postpone
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/element/postpone')
-rw-r--r--src/uscxml/plugins/element/postpone/PostponeElement.cpp4
-rw-r--r--src/uscxml/plugins/element/postpone/PostponeElement.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/plugins/element/postpone/PostponeElement.cpp b/src/uscxml/plugins/element/postpone/PostponeElement.cpp
index 7a18b38..a041a9e 100644
--- a/src/uscxml/plugins/element/postpone/PostponeElement.cpp
+++ b/src/uscxml/plugins/element/postpone/PostponeElement.cpp
@@ -44,7 +44,7 @@ boost::shared_ptr<ExecutableContentImpl> PostponeElement::create(InterpreterImpl
return invoker;
}
-void PostponeElement::enterElement(const Arabica::DOM::Node<std::string>& node) {
+void PostponeElement::enterElement(const Arabica::DOM::Element<std::string>& node) {
if (!_interpreter->getDataModel()) {
LOG(ERROR) << "Postpone element requires a datamodel";
return;
@@ -116,7 +116,7 @@ void PostponeElement::enterElement(const Arabica::DOM::Node<std::string>& node)
Resubmitter::postpone(currEvent, until, 0, chained, _interpreter);
}
-void PostponeElement::exitElement(const Arabica::DOM::Node<std::string>& node) {
+void PostponeElement::exitElement(const Arabica::DOM::Element<std::string>& node) {
}
void PostponeElement::Resubmitter::postpone(const Event& event, std::string until, uint64_t timeout, bool chained, InterpreterImpl* interpreter) {
diff --git a/src/uscxml/plugins/element/postpone/PostponeElement.h b/src/uscxml/plugins/element/postpone/PostponeElement.h
index 56464e2..9840c75 100644
--- a/src/uscxml/plugins/element/postpone/PostponeElement.h
+++ b/src/uscxml/plugins/element/postpone/PostponeElement.h
@@ -56,8 +56,8 @@ public:
return false;
}
- void enterElement(const Arabica::DOM::Node<std::string>& node);
- void exitElement(const Arabica::DOM::Node<std::string>& node);
+ void enterElement(const Arabica::DOM::Element<std::string>& node);
+ void exitElement(const Arabica::DOM::Element<std::string>& node);
protected:
// once per interpreter