summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-24 13:03:20 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-24 13:03:20 (GMT)
commit758bda908ded461c9d34d274a18454ffba4b7450 (patch)
treefb7f1ba28eab9f20b4ca16ed4dbc36d07dfce06e /src/uscxml/Message.h
parentfebde41c4c69d8f38967d5c195328d468834d037 (diff)
downloaduscxml-758bda908ded461c9d34d274a18454ffba4b7450.zip
uscxml-758bda908ded461c9d34d274a18454ffba4b7450.tar.gz
uscxml-758bda908ded461c9d34d274a18454ffba4b7450.tar.bz2
- Prolog DM compiles with recent SWI release again
- Bugfixes for stress test - Beautified code
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index 44d9207..05dc758 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -66,8 +66,8 @@ public:
class USCXML_API Data {
public:
enum Type {
- VERBATIM,
- INTERPRETED,
+ VERBATIM,
+ INTERPRETED,
};
Data() : type(INTERPRETED) {}
@@ -267,9 +267,9 @@ protected:
class USCXML_API Event {
public:
enum Type {
- INTERNAL = 1,
- EXTERNAL = 2,
- PLATFORM = 3
+ INTERNAL = 1,
+ EXTERNAL = 2,
+ PLATFORM = 3
};
Event() : eventType(INTERNAL), hideSendId(false) {}
@@ -281,9 +281,9 @@ public:
bool operator==(const Event& other) const {
return (this->name == other.name &&
- this->sendid == other.sendid &&
- this->invokeid == other.invokeid &&
- this->data == other.data);
+ this->sendid == other.sendid &&
+ this->invokeid == other.invokeid &&
+ this->data == other.data);
}
bool operator!=(const Event& other) const {
return !(*this == other);