| 2571 | } |
| 2572 | |
| 2573 | std::string Kernel::SVSQuery(const char* agentName, const std::string& q) |
| 2574 | { |
| 2575 | AnalyzeXML response; |
| 2576 | if (GetConnection()->SendAgentCommand(&response, sml_Names::kCommand_SVSQuery, agentName, sml_Names::kParamLine, q.c_str())) |
| 2577 | { |
| 2578 | return response.GetResultString(); |
| 2579 | } |
| 2580 | else |
| 2581 | { |
| 2582 | return ""; |
| 2583 | } |
| 2584 | } |
nothing calls this directly
no test coverage detected