summaryrefslogtreecommitdiffstats
path: root/src/uscxml/messages/Data.h
diff options
context:
space:
mode:
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) {