OSCAR-code/oscar/SleepLib/deviceconnection.cpp
sawinglogz 7a85f9784c Add initial device connection classes to eventually support recording/playback.
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.
2020-06-04 14:32:03 -04:00

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;
}