| 303 | { |
| 304 | template <typename INPUT> |
| 305 | bool operator()(INPUT* fp, value_type* value) const |
| 306 | { |
| 307 | return read_data(fp, value, sizeof(*value)); |
| 308 | } |
| 309 | |
| 310 | template <typename OUTPUT> |
| 311 | bool operator()(OUTPUT* fp, const value_type& value) const |
nothing calls this directly
no test coverage detected