| 4083 | } |
| 4084 | |
| 4085 | void YRequest::getInfo(CheckStatusWrapper* status, int level, unsigned int itemsLength, |
| 4086 | const unsigned char* items, unsigned int bufferLength, unsigned char* buffer) |
| 4087 | { |
| 4088 | try |
| 4089 | { |
| 4090 | YEntry<YRequest> entry(status, this); |
| 4091 | entry.next()->getInfo(status, level, itemsLength, items, bufferLength, buffer); |
| 4092 | } |
| 4093 | catch (const Exception& e) |
| 4094 | { |
| 4095 | e.stuffException(status); |
| 4096 | } |
| 4097 | } |
| 4098 | |
| 4099 | void YRequest::start(CheckStatusWrapper* status, ITransaction* transaction, int level) |
| 4100 | { |
no test coverage detected