summaryrefslogtreecommitdiffstats
path: root/src/uscxml/messages/Data.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-20 15:25:48 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-20 15:25:48 (GMT)
commit7454d99f1d02c68706da1ed6237a5f391291942d (patch)
treef0a2b507e16b237b405c7dfc17ef169bf0b93bc5 /src/uscxml/messages/Data.h
parentb9204bad8cc2957bc0ae6201640d2972e9d4c239 (diff)
downloaduscxml-7454d99f1d02c68706da1ed6237a5f391291942d.zip
uscxml-7454d99f1d02c68706da1ed6237a5f391291942d.tar.gz
uscxml-7454d99f1d02c68706da1ed6237a5f391291942d.tar.bz2
Updated documentation
Diffstat (limited to 'src/uscxml/messages/Data.h')
-rw-r--r--src/uscxml/messages/Data.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uscxml/messages/Data.h b/src/uscxml/messages/Data.h
index eb765db..818b26e 100644
--- a/src/uscxml/messages/Data.h
+++ b/src/uscxml/messages/Data.h
@@ -53,6 +53,7 @@ public:
Data(unsigned int atom) : atom(toStr(atom)), type(INTERPRETED) {}
Data(long atom) : atom(toStr(atom)), type(INTERPRETED) {}
Data(unsigned long atom) : atom(toStr(atom)), type(INTERPRETED) {}
+ Data(long long int atom) : atom(toStr(atom)), type(INTERPRETED) {}
Data(float atom) : atom(toStr(atom)), type(INTERPRETED) {}
Data(double atom) : atom(toStr(atom)), type(INTERPRETED) {}
Data(bool atom) : type(INTERPRETED) {