mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Improve gcc fix from d2fc5ac
.
Evidently gcc doesn't recognize inline forward declaration, but clang does. I wonder who is right? This was previously addressed by adding an #include. Instead, this patch adds a standalone forward declaration of the QXmlStreamReader/Writer classes. This has been tested and verified to compile with gcc and clang.
This commit is contained in:
parent
7316ac676c
commit
cfabdbe742
@ -13,7 +13,6 @@
|
|||||||
// connections to devices. For now it just supports serial ports.
|
// connections to devices. For now it just supports serial ports.
|
||||||
|
|
||||||
#include <QtSerialPort/QSerialPort>
|
#include <QtSerialPort/QSerialPort>
|
||||||
#include <QXmlStreamWriter>
|
|
||||||
#include <QHash>
|
#include <QHash>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
|
||||||
@ -263,6 +262,9 @@ public:
|
|||||||
* supports Bluetooth and BLE as well as serial. Such a class might then be
|
* supports Bluetooth and BLE as well as serial. Such a class might then be
|
||||||
* used instead of port "name" between DeviceConnectionManager and clients.
|
* used instead of port "name" between DeviceConnectionManager and clients.
|
||||||
*/
|
*/
|
||||||
|
class QXmlStreamWriter;
|
||||||
|
class QXmlStreamReader;
|
||||||
|
|
||||||
class SerialPortInfo
|
class SerialPortInfo
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Loading…
Reference in New Issue
Block a user