1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-15 20:28:52 -04:00

Implemented connection from device sample source/sink to GUI input message queue

This commit is contained in:
f4exb
2017-09-16 23:44:00 +02:00
parent 2b4f8a0f55
commit c83b6e61d5
4 changed files with 21 additions and 7 deletions
+4 -3
View File
@@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
// written by Christian Daniel //
// Copyright (C) 2015-2017 F4EXB //
// written by Edouard Griffiths //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
@@ -17,7 +17,8 @@
#include <dsp/devicesamplesource.h>
DeviceSampleSource::DeviceSampleSource()
DeviceSampleSource::DeviceSampleSource() :
m_guiMessageQueue(0)
{
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
}