mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-19 10:32:02 -05:00
30c1266614
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2664 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
30 lines
559 B
C++
30 lines
559 B
C++
#ifndef JT9DECODE_H
|
|
#define JT9DECODE_H
|
|
#include <QtCore>
|
|
#include <QDebug>
|
|
|
|
class JT9DecodeThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
virtual void run();
|
|
|
|
public:
|
|
// Constructs (but does not start) a JT9DecodeThread
|
|
JT9DecodeThread()
|
|
: quitExecution(false) // Initialize some private members
|
|
, m_txOK(false)
|
|
{
|
|
}
|
|
|
|
public:
|
|
bool quitExecution; //If true, thread exits gracefully
|
|
|
|
// Private members
|
|
private:
|
|
bool m_txOK; //Enable Tx audio
|
|
};
|
|
|
|
#endif // JT9DECODE_H
|