| 524 | } |
| 525 | |
| 526 | void DtcStart::addWithTpb(CheckStatusWrapper* status, IAttachment* att, |
| 527 | unsigned length, const unsigned char* tpb) |
| 528 | { |
| 529 | try |
| 530 | { |
| 531 | Component toAdd; |
| 532 | toAdd.att = att; |
| 533 | toAdd.tpbLen = length; |
| 534 | toAdd.tpb = tpb; |
| 535 | |
| 536 | components.add(toAdd); |
| 537 | att->addRef(); |
| 538 | } |
| 539 | catch (const Exception& ex) |
| 540 | { |
| 541 | ex.stuffException(status); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | void DtcStart::dispose() |
| 546 | { |
no test coverage detected