1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 07:46:37 -04:00
sdrangel/plugins/channelrx/demodft8/ft8demodworker.h

39 lines
1.7 KiB
C
Raw Normal View History

2023-01-18 17:00:59 -05:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2023 Edouard Griffiths, F4EXB //
// //
// 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 //
// the Free Software Foundation as version 3 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDE_FT8DEMODWORKER_H
#define INCLUDE_FT8DEMODWORKER_H
#include <QObject>
class QDateTime;
class FT8DemodWorker : public QObject
{
Q_OBJECT
public:
FT8DemodWorker();
~FT8DemodWorker();
void processBuffer(int16_t *buffer, QDateTime periodTS);
private:
QString m_samplesPath;
};
#endif // INCLUDE_FT8DEMODWORKER_H