1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-29 08:16:35 -04:00

TCP and UDP sources: removed useless dependency on QThread

This commit is contained in:
f4exb 2017-05-20 05:48:39 +02:00
parent e946242fae
commit 7f539f0314
2 changed files with 4 additions and 6 deletions

View File

@ -14,13 +14,12 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. // // along with this program. If not, see <http://www.gnu.org/licenses/>. //
/////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////
#include "../../channelrx/tcpsrc/tcpsrc.h" #include "tcpsrc.h"
#include <dsp/downchannelizer.h> #include <dsp/downchannelizer.h>
#include <QTcpServer> #include <QTcpServer>
#include <QTcpSocket> #include <QTcpSocket>
#include <QThread> #include "tcpsrcgui.h"
#include "../../channelrx/tcpsrc/tcpsrcgui.h"
MESSAGE_CLASS_DEFINITION(TCPSrc::MsgTCPSrcConfigure, Message) MESSAGE_CLASS_DEFINITION(TCPSrc::MsgTCPSrcConfigure, Message)
MESSAGE_CLASS_DEFINITION(TCPSrc::MsgTCPSrcConnection, Message) MESSAGE_CLASS_DEFINITION(TCPSrc::MsgTCPSrcConnection, Message)

View File

@ -15,15 +15,14 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. // // along with this program. If not, see <http://www.gnu.org/licenses/>. //
/////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////
#include "../../channelrx/udpsrc/udpsrc.h" #include "udpsrc.h"
#include <dsp/downchannelizer.h> #include <dsp/downchannelizer.h>
#include <QUdpSocket> #include <QUdpSocket>
#include <QThread>
#include <QHostAddress> #include <QHostAddress>
#include "dsp/dspengine.h" #include "dsp/dspengine.h"
#include "../../channelrx/udpsrc/udpsrcgui.h" #include "udpsrcgui.h"
MESSAGE_CLASS_DEFINITION(UDPSrc::MsgUDPSrcConfigure, Message) MESSAGE_CLASS_DEFINITION(UDPSrc::MsgUDPSrcConfigure, Message)
MESSAGE_CLASS_DEFINITION(UDPSrc::MsgUDPSrcConfigureImmediate, Message) MESSAGE_CLASS_DEFINITION(UDPSrc::MsgUDPSrcConfigureImmediate, Message)