| 79 | } |
| 80 | |
| 81 | void AddMonitorNodes() { |
| 82 | for (auto n : _nodes) { |
| 83 | std::shared_ptr<lab::PowerMonitorNode> pn(new PowerMonitorNode(*context.get())); |
| 84 | context->connect(pn, n, 0, 0); |
| 85 | context->addAutomaticPullNode(pn); |
| 86 | _powerNodes.push_back(pn); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | inline std::vector<std::string> SplitCommandLine(int argc, char ** argv) |
| 91 | { |
nothing calls this directly
no test coverage detected