| 18 | { } |
| 19 | |
| 20 | Dictionary::Ptr CommandDbObject::GetConfigFields() const |
| 21 | { |
| 22 | Command::Ptr command = static_pointer_cast<Command>(GetObject()); |
| 23 | |
| 24 | return new Dictionary({ |
| 25 | { "command_line", CompatUtility::GetCommandLine(command) } |
| 26 | }); |
| 27 | } |
| 28 | |
| 29 | Dictionary::Ptr CommandDbObject::GetStatusFields() const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected