| 240 | } |
| 241 | |
| 242 | Value HostsTable::CheckCommandAccessor(const Value& row) |
| 243 | { |
| 244 | Host::Ptr host = static_cast<Host::Ptr>(row); |
| 245 | |
| 246 | if (!host) |
| 247 | return Empty; |
| 248 | |
| 249 | CheckCommand::Ptr checkcommand = host->GetCheckCommand(); |
| 250 | if (checkcommand) |
| 251 | return CompatUtility::GetCommandName(checkcommand) + "!" + CompatUtility::GetCheckableCommandArgs(host); |
| 252 | |
| 253 | return Empty; |
| 254 | } |
| 255 | |
| 256 | Value HostsTable::CheckCommandExpandedAccessor(const Value& row) |
| 257 | { |
nothing calls this directly
no test coverage detected