1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-18 08:54:15 +01:00

Fixed missing QDataStream includes to make compilation on qt 5.5 work

This commit is contained in:
James Duley 2015-07-20 03:44:45 +12:00
parent 4efb8cd5c7
commit a61773e3af
5 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,7 @@
#include <QSettings>
#include <QDomElement>
#include <QObject>
#include <QDataStream>
class XMLCONFIG_EXPORT XmlConfig : QObject {
Q_OBJECT

View File

@ -29,6 +29,7 @@
#define XPLANESIMULATOR10_H
#include <QObject>
#include <QDataStream>
#include <simulator.h>
class XplaneSimulator10 : public Simulator {

View File

@ -29,6 +29,7 @@
#define XPLANESIMULATOR9_H
#include <QObject>
#include <QDataStream>
#include <simulator.h>
class XplaneSimulator9 : public Simulator {

View File

@ -31,6 +31,7 @@
#include <QAbstractTableModel>
#include <QList>
#include <QDataStream>
#include "notificationitem.h"
enum ColumnNames { eMessageName, eRepeatValue, eExpireTimer, eTurnOn };

View File

@ -31,6 +31,7 @@
#include <QtNetwork/QLocalServer>
#include <QtNetwork/QLocalSocket>
#include <QtCore/QDir>
#include <QDataStream>
namespace SharedTools {
class QtLocalPeer : public QObject {