summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-02 18:42:17 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-02 18:42:17 (GMT)
commitf627a8a8b139a42568f67dc18679d92806e0ff4e (patch)
tree0ef345134ce775c6fca5ec35d2b6eecddbf3450e /src/uscxml/Message.h
parentf19be97dea6fd8da994392d6fa7de5b3f0d9bf3e (diff)
downloaduscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.zip
uscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.tar.gz
uscxml-f627a8a8b139a42568f67dc18679d92806e0ff4e.tar.bz2
More bug-fixes for W3C tests
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index eed9836..cb7196a 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -95,7 +95,7 @@ public:
};
Event() : type(INTERNAL) {}
- Event(const std::string& name) : name(name), type(INTERNAL) {}
+ Event(const std::string& name, Type type = INTERNAL) : name(name), type(type) {}
Event(const Arabica::DOM::Node<std::string>& xmlString) : type(INTERNAL) {};
bool operator< (const Event& other) const {
return this < &other;