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:
sawinglogz 2020-07-21 13:51:20 -04:00
parent 7316ac676c
commit cfabdbe742

View File

@ -13,7 +13,6 @@
// connections to devices. For now it just supports serial ports.
#include <QtSerialPort/QSerialPort>
#include <QXmlStreamWriter>
#include <QHash>
#include <QVariant>
@ -263,6 +262,9 @@ public:
* supports Bluetooth and BLE as well as serial. Such a class might then be
* used instead of port "name" between DeviceConnectionManager and clients.
*/
class QXmlStreamWriter;
class QXmlStreamReader;
class SerialPortInfo
{
public: