| 122 | } |
| 123 | |
| 124 | void MonitorPluginEntry::SetMonitorPlugin(MonitorPlugin * monitor) { |
| 125 | if (!is_set_) { |
| 126 | delete monitor_plugin_, monitor_plugin_ = NULL; |
| 127 | } |
| 128 | monitor_plugin_ = monitor; |
| 129 | is_set_ = true; |
| 130 | } |
| 131 | |
| 132 | MonitorPlugin * MonitorPluginEntry::GetMonitorPlugin() { |
| 133 | return monitor_plugin_; |
nothing calls this directly
no outgoing calls
no test coverage detected