| 281 | type = VT_NULL; |
| 282 | } |
| 283 | void Value::Set(const Value &value) |
| 284 | { |
| 285 | if (this != &value) |
| 286 | { |
| 287 | valueStr = value.valueStr; |
| 288 | type = value.type; |
| 289 | } |
| 290 | } |
| 291 | void Value::Set(ValueType type, const std::string &value) |
| 292 | { |
| 293 | valueStr = value; |
no outgoing calls