| 12 | class SharedParameter : public Customer { |
| 13 | public: |
| 14 | SharedParameter(const string& my_name, const string& parent_name) |
| 15 | : Customer(my_name, parent_name) { } |
| 16 | // convenient wrappers of functions in remote_node.h |
| 17 | int sync(MessagePtr msg) { |
| 18 | CHECK(msg->task.shared_para().has_cmd()) << msg->debugString(); |
nothing calls this directly
no outgoing calls
no test coverage detected