| 224 | } |
| 225 | |
| 226 | bool DataFlow::yyparse(FILE* yyin) |
| 227 | { |
| 228 | df_parser_restart(yyin); |
| 229 | DataFlowContext context; |
| 230 | context.m_dataflow = this; |
| 231 | int iRc = df_parser_parse(context); |
| 232 | fclose(yyin); |
| 233 | return (iRc==0); |
| 234 | } |
| 235 | |
| 236 | void DataFlow::save(const std::string& filename) |
| 237 | { |
nothing calls this directly
no test coverage detected