| 64 | } |
| 65 | |
| 66 | program parse_tf(const std::string& name, const tf_options& options) |
| 67 | { |
| 68 | std::fstream input(name.c_str(), std::ios::in | std::ios::binary); |
| 69 | return parse_tf_from(options, input); |
| 70 | } |
| 71 | |
| 72 | program parse_tf_buffer(const std::string& buffer, const tf_options& options) |
| 73 | { |
no test coverage detected