summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-09-16 23:09:21 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-09-16 23:09:21 (GMT)
commit959224050cbceb024588bf0b49c57c503c299beb (patch)
tree50dfbf7f2c05e0974349b19c3f78e7681561a495 /src/uscxml/Message.h
parent2196f12c9f31b9858fedc477bbe9d5dbd2f87147 (diff)
downloaduscxml-959224050cbceb024588bf0b49c57c503c299beb.zip
uscxml-959224050cbceb024588bf0b49c57c503c299beb.tar.gz
uscxml-959224050cbceb024588bf0b49c57c503c299beb.tar.bz2
fixed json in ecmascript data
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 34b85e1..be7747d 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -24,7 +24,7 @@ public:
Data() {}
Data(const std::string& atom_, Type type_ = INTERPRETED) : atom(atom_), type(type_) {}
- Data(const Arabica::DOM::Node<std::string>& dom);
+ Data(const Arabica::DOM::Node<std::string>& dom, Type type = VERBATIM);
virtual ~Data() {}
static Data fromXML(const std::string& xmlString);