| 34 | const std::string& Device::type() const { return (*device_)->type(); } |
| 35 | |
| 36 | int64_t Device::device_id() const { return (*device_)->device_id(); } |
| 37 | |
| 38 | bool Device::operator==(const Device& rhs) const { return *device_ == *rhs.device_; } |
| 39 | bool Device::operator!=(const Device& rhs) const { return *device_ != *rhs.device_; } |
no outgoing calls