WSJT-X/jt9decode.h
Joe Taylor 30c1266614 First successful decode from within WSJT-X.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@2664 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2012-10-15 19:18:45 +00:00

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