| 316 | } |
| 317 | |
| 318 | void IDataType::setCustomization(DataTypeCustomDescPtr custom_desc_) const |
| 319 | { |
| 320 | /// replace only if not null |
| 321 | if (custom_desc_->name) |
| 322 | custom_name = std::move(custom_desc_->name); |
| 323 | |
| 324 | if (custom_desc_->serialization) |
| 325 | custom_serialization = std::move(custom_desc_->serialization); |
| 326 | } |
| 327 | |
| 328 | MutableSerializationInfoPtr IDataType::createSerializationInfo(const SerializationInfoSettings & settings) const |
| 329 | { |
no outgoing calls
no test coverage detected