- Timestamp:
- 08/20/08 13:23:52 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/OWBAL/Concretizations/Types/Common/BCbal_objectCommon.h
r243 r447 37 37 class BalValuePrivate; 38 38 39 enum BalType {40 UnspecifiedType = 0,41 NumberType = 1,42 BooleanType = 2,43 UndefinedType = 3,44 NullType = 4,45 StringType = 5,46 ObjectType = 6,47 GetterSetterType = 748 };49 50 39 class BalValue { 51 40 public: … … 54 43 ~BalValue(); 55 44 56 BalType type() const; 45 bool isUndefined() const; 46 bool isNull() const; 47 bool isUndefinedOrNull() const; 48 bool isBoolean() const; 57 49 bool isNumber() const; 58 50 bool isString() const; 51 bool isGetterSetter() const; 59 52 bool isObject() const; 60 53
