|
|
@ -178,15 +178,17 @@ class Device : Object { |
|
|
|
* Generates a unique string for this device |
|
|
|
*/ |
|
|
|
public string to_unique_string() { |
|
|
|
return make_unique_device_string(this.device_id, |
|
|
|
this.device_name, |
|
|
|
this.device_type, |
|
|
|
this.protocol_version); |
|
|
|
return Utils.make_unique_device_string(this.device_id, |
|
|
|
this.device_name, |
|
|
|
this.device_type, |
|
|
|
this.protocol_version); |
|
|
|
} |
|
|
|
|
|
|
|
public string to_string() { |
|
|
|
return make_device_string(this.device_id, this.device_name, |
|
|
|
this.device_type, this.protocol_version); |
|
|
|
return Utils.make_device_string(this.device_id, |
|
|
|
this.device_name, |
|
|
|
this.device_type, |
|
|
|
this.protocol_version); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|