| 197 | |
| 198 | |
| 199 | bool DataFlow::load(const std::string& filename) |
| 200 | { |
| 201 | FILE* yyin = fopen(filename.c_str(),"r"); |
| 202 | if (yyin==NULL) |
| 203 | { |
| 204 | cerr << "cannot open file " << filename << endl; |
| 205 | return false; |
| 206 | } |
| 207 | return yyparse(yyin); |
| 208 | } |
| 209 | |
| 210 | bool DataFlow::loads(const std::string& df_str) |
| 211 | { |
nothing calls this directly
no outgoing calls
no test coverage detected