summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-03 16:21:13 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-11-03 16:21:13 (GMT)
commitcb30bd1f44fcc3a0642a362afd4eaea0d8a7d199 (patch)
tree8cfcf2ceca801c5d506e03d0e187f440094d1674 /src/uscxml/Message.h
parent9caf9ade8ff87a1cb94fb612df4abd96fb5ed239 (diff)
downloaduscxml-cb30bd1f44fcc3a0642a362afd4eaea0d8a7d199.zip
uscxml-cb30bd1f44fcc3a0642a362afd4eaea0d8a7d199.tar.gz
uscxml-cb30bd1f44fcc3a0642a362afd4eaea0d8a7d199.tar.bz2
First signs of WebSockets and some changes to miles
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 1964f1c..44358be 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -74,7 +74,7 @@ public:
Data() : type(INTERPRETED) {}
Data(const std::string& atom_, Type type_ = INTERPRETED) : atom(atom_), type(type_) {}
- Data(const char* data, size_t size, const std::string& mimeType, bool adopt);
+ Data(const char* data, size_t size, const std::string& mimeType, bool adopt = false);
Data(bool atom_) : type(INTERPRETED) {
if (atom_) {
atom = "true";