| 234 | } |
| 235 | |
| 236 | std::shared_ptr<Data> NetMessageMaker::MakeMonitorSwitched(const std::string& name, const int& mon_index) { |
| 237 | tc::Message msg; |
| 238 | msg.set_type(kMonitorSwitched); |
| 239 | msg.mutable_monitor_switched()->set_name(name); |
| 240 | msg.mutable_monitor_switched()->set_index(mon_index); |
| 241 | return ProtoAsData(&msg); |
| 242 | } |
| 243 | |
| 244 | } |
nothing calls this directly
no outgoing calls
no test coverage detected