| 380 | } |
| 381 | |
| 382 | command_result df_liquids_here (color_ostream &out, vector <string> & parameters) |
| 383 | { |
| 384 | for(size_t i = 0; i < parameters.size();i++) |
| 385 | { |
| 386 | if(parameters[i] == "help" || parameters[i] == "?") |
| 387 | return CR_WRONG_USAGE; |
| 388 | } |
| 389 | |
| 390 | out.print("Run liquids-here with these parameters: "); |
| 391 | print_prompt(out, cur_mode); |
| 392 | out << endl; |
| 393 | |
| 394 | return df_liquids_execute(out); |
| 395 | } |
| 396 | |
| 397 | command_result df_liquids_execute(color_ostream &out) |
| 398 | { |
nothing calls this directly
no test coverage detected