| 2558 | } |
| 2559 | |
| 2560 | std::string Kernel::GetSVSOutput(const char* agentName) |
| 2561 | { |
| 2562 | AnalyzeXML response; |
| 2563 | if (GetConnection()->SendAgentCommand(&response, sml_Names::kCommand_SVSOutput, agentName, sml_Names::kParamLine, NULL)) |
| 2564 | { |
| 2565 | return response.GetResultString(); |
| 2566 | } |
| 2567 | else |
| 2568 | { |
| 2569 | return ""; |
| 2570 | } |
| 2571 | } |
| 2572 | |
| 2573 | std::string Kernel::SVSQuery(const char* agentName, const std::string& q) |
| 2574 | { |
nothing calls this directly
no test coverage detected