mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
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
|