| 683 | } |
| 684 | |
| 685 | Value HostsTable::LastCheckAccessor(const Value& row) |
| 686 | { |
| 687 | Host::Ptr host = static_cast<Host::Ptr>(row); |
| 688 | |
| 689 | if (!host) |
| 690 | return Empty; |
| 691 | |
| 692 | return static_cast<int>(host->GetLastCheck()); |
| 693 | } |
| 694 | |
| 695 | Value HostsTable::LastStateChangeAccessor(const Value& row) |
| 696 | { |
nothing calls this directly
no test coverage detected