* @brief Set cube serial number * * This method is used to set the serial number of the cube. That is, * the coordinate was selected from a cube with this unique serial * number * * @param sn Serial number of the cube where the coordinate was * selected * @return Status Success or MeasureLocked * */
| 185 | * |
| 186 | */ |
| 187 | ControlMeasure::Status ControlMeasure::SetCubeSerialNumber(QString newSerialNumber) { |
| 188 | if (IsEditLocked()) |
| 189 | return MeasureLocked; |
| 190 | *p_serialNumber = newSerialNumber; |
| 191 | return Success; |
| 192 | } |
| 193 | |
| 194 | |
| 195 | //! Set chooser name to a user who last changed the coordinate |
no outgoing calls