| 23 | using namespace xsched::protocol; |
| 24 | |
| 25 | Cli::Cli(const std::string &addr, uint16_t port) |
| 26 | { |
| 27 | client_ = std::make_unique<Client>(addr, port); |
| 28 | } |
| 29 | |
| 30 | int Cli::ListXQueues() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected