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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index c241b78..a006ff6 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -54,9 +54,9 @@ protected:
class Event : public Data {
public:
enum Type {
- PLATFORM,
- INTERNAL,
- EXTERNAL
+ INTERNAL = 1,
+ EXTERNAL = 2,
+ PLATFORM = 3
};
Event() : type(INTERNAL) {}