mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
This initial commit is designed to change as little existing code as possible. Once regression tests are in place that can play back previously recorded data, we can move on to more significant changes.
29 lines
736 B
C++
29 lines
736 B
C++
/* Device Connection Class Implementation
|
|
*
|
|
* Copyright (c) 2020 The OSCAR Team
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the source code
|
|
* for more details. */
|
|
|
|
#include "deviceconnection.h"
|
|
|
|
SerialPortInfo::SerialPortInfo(const QSerialPortInfo & other)
|
|
: QSerialPortInfo(other)
|
|
{
|
|
}
|
|
|
|
SerialPortInfo::SerialPortInfo(const SerialPortInfo & other)
|
|
: QSerialPortInfo(dynamic_cast<const SerialPortInfo &>(other))
|
|
{
|
|
}
|
|
|
|
QList<SerialPortInfo> SerialPortInfo::availablePorts()
|
|
{
|
|
QList<SerialPortInfo> out;
|
|
for (auto & info : QSerialPortInfo::availablePorts()) {
|
|
out.append(SerialPortInfo(info));
|
|
}
|
|
return out;
|
|
}
|