| 446 | } |
| 447 | |
| 448 | command_result Commands::show(color_ostream& con, Core& core, const std::string& first, const std::vector<std::string>& parts) |
| 449 | { |
| 450 | if (!core.getConsole().show()) |
| 451 | { |
| 452 | con.printerr("Could not show console\n"); |
| 453 | return CR_FAILURE; |
| 454 | } |
| 455 | return CR_OK; |
| 456 | } |
| 457 | |
| 458 | command_result Commands::hide(color_ostream& con, Core& core, const std::string& first, const std::vector<std::string>& parts) |
| 459 | { |