| 454 | } |
| 455 | |
| 456 | void Host::SaveCommand( const CommandsArguments& args ) |
| 457 | { |
| 458 | if( args.empty() ) |
| 459 | { |
| 460 | Log::Warning( "Expected save name" ); |
| 461 | return; |
| 462 | } |
| 463 | |
| 464 | DoSave( args.front().c_str() ); |
| 465 | } |
| 466 | |
| 467 | void Host::LoadCommand( const CommandsArguments& args ) |
| 468 | { |
nothing calls this directly
no outgoing calls
no test coverage detected