mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-08 10:06:11 -05:00
9175c62b3b
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3169 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
19 lines
241 B
C++
19 lines
241 B
C++
#ifndef PSK_REPORTER_H
|
|
#define PSK_REPORTER_H
|
|
|
|
#include <QObject>
|
|
|
|
class PSK_Reporter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PSK_Reporter(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // PSK_REPORTER_H
|