C++ (Qt)... int value = 0; if (SerialPort::NoParity == value) { ... }...
C++ (Qt)foreach(const SerialPortInfo &info, availablePorts()) { if (port.portName() == info.portName()) { *this = info; break; }}
C++ (Qt)QList<SerialPortInfo> list = availablePorts();foreach(const SerialPortInfo &info, list) { if (port.portName() == info.portName()) { *this = info; break; }}