mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
Fix compilation depending of order of includes
adsbdemodsink.h was getting the definition of class Message from dsp/dspcommands.h which was included by adsbdemodsink.cpp before including adsbdemodsink.h itself.
This commit is contained in:
parent
d7f6ec7518
commit
13222cac8d
@ -19,14 +19,6 @@
|
|||||||
#include <QTime>
|
#include <QTime>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
#include "util/stepfunctions.h"
|
|
||||||
#include "util/db.h"
|
|
||||||
#include "dsp/dspengine.h"
|
|
||||||
#include "dsp/dspcommands.h"
|
|
||||||
#include "dsp/devicesamplemimo.h"
|
|
||||||
#include "device/deviceapi.h"
|
|
||||||
|
|
||||||
#include "adsbdemodreport.h"
|
|
||||||
#include "adsbdemodsink.h"
|
#include "adsbdemodsink.h"
|
||||||
#include "adsbdemodsinkworker.h"
|
#include "adsbdemodsinkworker.h"
|
||||||
#include "adsb.h"
|
#include "adsb.h"
|
||||||
|
@ -25,10 +25,8 @@
|
|||||||
#include "dsp/channelsamplesink.h"
|
#include "dsp/channelsamplesink.h"
|
||||||
#include "dsp/nco.h"
|
#include "dsp/nco.h"
|
||||||
#include "dsp/interpolator.h"
|
#include "dsp/interpolator.h"
|
||||||
#include "util/movingaverage.h"
|
|
||||||
|
|
||||||
#include "adsbdemodsettings.h"
|
#include "adsbdemodsettings.h"
|
||||||
#include "adsbdemodstats.h"
|
|
||||||
#include "adsbdemodsinkworker.h"
|
#include "adsbdemodsinkworker.h"
|
||||||
|
|
||||||
class ADSBDemodSink : public ChannelSampleSink {
|
class ADSBDemodSink : public ChannelSampleSink {
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
#include "dsp/dsptypes.h"
|
#include "dsp/dsptypes.h"
|
||||||
#include "util/crc.h"
|
#include "util/crc.h"
|
||||||
|
#include "util/message.h"
|
||||||
#include "util/messagequeue.h"
|
#include "util/messagequeue.h"
|
||||||
#include "adsbdemodstats.h"
|
#include "adsbdemodstats.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user