summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/response/ResponseElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins/element/response/ResponseElement.h')
-rw-r--r--src/uscxml/plugins/element/response/ResponseElement.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/uscxml/plugins/element/response/ResponseElement.h b/src/uscxml/plugins/element/response/ResponseElement.h
index 97ff9db..9b3ce61 100644
--- a/src/uscxml/plugins/element/response/ResponseElement.h
+++ b/src/uscxml/plugins/element/response/ResponseElement.h
@@ -8,7 +8,7 @@
#endif
namespace uscxml {
-
+
class ResponseElement : public ExecutableContentImpl {
public:
ResponseElement() {}
@@ -22,16 +22,16 @@ public:
std::string getNamespace() {
return "http://www.w3.org/2005/07/scxml";
}
-
+
bool processChildren() {
return false;
}
-
+
void enterElement(const Arabica::DOM::Node<std::string>& node);
void exitElement(const Arabica::DOM::Node<std::string>& node);
-
+
};
-
+
#ifdef BUILD_AS_PLUGINS
PLUMA_INHERIT_PROVIDER(ResponseElement, Element);
#endif