- 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.cpp
r288 r447 54 54 } 55 55 56 BalType BalValue::type() const 57 { 58 return d->type(); 56 bool BalValue::isUndefined() const 57 { 58 return d->isUndefined(); 59 } 60 61 bool BalValue::isNull() const 62 { 63 return d->isNull(); 64 } 65 66 bool BalValue::isUndefinedOrNull() const 67 { 68 return d->isUndefinedOrNull(); 69 } 70 71 bool BalValue::isBoolean() const 72 { 73 return d->isBoolean(); 59 74 } 60 75 … … 67 82 { 68 83 return d->isString(); 84 } 85 86 bool BalValue::isGetterSetter() const 87 { 88 return d->isGetterSetter(); 69 89 } 70 90
