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