| 82 | } |
| 83 | |
| 84 | bool |
| 85 | OutputMgr::is_monitored_func(void) |
| 86 | { |
| 87 | if (OutputMgr::monitored_funcs_.empty()) |
| 88 | return true; |
| 89 | std::vector<string>::iterator result = |
| 90 | find(monitored_funcs_.begin(), monitored_funcs_.end(), curr_func_); |
| 91 | return (result != monitored_funcs_.end()); |
| 92 | } |
| 93 | |
| 94 | OutputMgr::OutputMgr() |
| 95 | { |