| 1175 | } |
| 1176 | |
| 1177 | const char* getString(CheckStatusWrapper* status) |
| 1178 | { |
| 1179 | try |
| 1180 | { |
| 1181 | pb->getString(strVal); |
| 1182 | return strVal.c_str(); |
| 1183 | } |
| 1184 | catch (const Exception& ex) |
| 1185 | { |
| 1186 | ex.stuffException(status); |
| 1187 | return NULL; |
| 1188 | } |
| 1189 | } |
| 1190 | |
| 1191 | const unsigned char* getBytes(CheckStatusWrapper* status) |
| 1192 | { |
no test coverage detected