summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/element/response/ResponseElement.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
commit47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b (patch)
treeb991daf52ca2051d2e3f89f8143b843bf1318449 /src/uscxml/plugins/element/response/ResponseElement.h
parent8c30e4f664bb8b68f965165035ec29115486b065 (diff)
downloaduscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.zip
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.gz
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.bz2
Beautified source code again
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