| 3528 | }; |
| 3529 | |
| 3530 | class OutputResponse |
| 3531 | { |
| 3532 | public: |
| 3533 | OutputResponse() |
| 3534 | : response(0) |
| 3535 | , element(0) |
| 3536 | {} |
| 3537 | OutputResponse(Element *_elem, Response *_resp) |
| 3538 | : response(_resp) |
| 3539 | , element(_elem) |
| 3540 | {} |
| 3541 | Response *response; |
| 3542 | Element *element; |
| 3543 | }; |
| 3544 | |
| 3545 | struct OutputResponseCollection |
| 3546 | { |
no outgoing calls
no test coverage detected