| 378 | |
| 379 | |
| 380 | IMetadataBuilder* MsgMetadata::getBuilder(CheckStatusWrapper* status) |
| 381 | { |
| 382 | try |
| 383 | { |
| 384 | IMetadataBuilder* rc = FB_NEW MetadataBuilder(this); |
| 385 | rc->addRef(); |
| 386 | return rc; |
| 387 | } |
| 388 | catch (const Exception& ex) |
| 389 | { |
| 390 | ex.stuffException(status); |
| 391 | } |
| 392 | return NULL; |
| 393 | } |
| 394 | |
| 395 | |
| 396 | void MsgMetadata::assign(IMessageMetadata* from) |
nothing calls this directly
no test coverage detected