aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCValue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/basetypes/MCValue.h')
-rw-r--r--src/core/basetypes/MCValue.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/basetypes/MCValue.h b/src/core/basetypes/MCValue.h
index 09c05d6b..7e0fb3c1 100644
--- a/src/core/basetypes/MCValue.h
+++ b/src/core/basetypes/MCValue.h
@@ -10,6 +10,25 @@ namespace mailcore {
class String;
+ enum {
+ ValueTypeNone,
+ ValueTypeBool,
+ ValueTypeChar,
+ ValueTypeUnsignedChar,
+ ValueTypeShort,
+ ValueTypeUnsignedShort,
+ ValueTypeInt,
+ ValueTypeUnsignedInt,
+ ValueTypeLong,
+ ValueTypeUnsignedLong,
+ ValueTypeLongLong,
+ ValueTypeUnsignedLongLong,
+ ValueTypeFloat,
+ ValueTypeDouble,
+ ValueTypePointer,
+ ValueTypeData,
+ };
+
class Value : public Object {
public:
virtual ~Value();