diff --git a/psk_reporter.cpp b/psk_reporter.cpp new file mode 100644 index 000000000..ee70de2d1 --- /dev/null +++ b/psk_reporter.cpp @@ -0,0 +1,6 @@ +#include "psk_reporter.h" + +PSK_Reporter::PSK_Reporter(QObject *parent) : + QObject(parent) +{ +} diff --git a/psk_reporter.h b/psk_reporter.h new file mode 100644 index 000000000..616656497 --- /dev/null +++ b/psk_reporter.h @@ -0,0 +1,18 @@ +#ifndef PSK_REPORTER_H +#define PSK_REPORTER_H + +#include + +class PSK_Reporter : public QObject +{ + Q_OBJECT +public: + explicit PSK_Reporter(QObject *parent = 0); + +signals: + +public slots: + +}; + +#endif // PSK_REPORTER_H diff --git a/wsjtx.pro b/wsjtx.pro index 74d73c7d0..0fcfa641d 100644 --- a/wsjtx.pro +++ b/wsjtx.pro @@ -36,7 +36,8 @@ SOURCES += main.cpp mainwindow.cpp plotter.cpp about.cpp \ soundin.cpp soundout.cpp devsetup.cpp \ widegraph.cpp getfile.cpp \ displaytext.cpp getdev.cpp \ - logqso.cpp + logqso.cpp \ + psk_reporter.cpp win32 { SOURCES += killbyname.cpp @@ -45,7 +46,8 @@ SOURCES += killbyname.cpp HEADERS += mainwindow.h plotter.h soundin.h soundout.h \ about.h devsetup.h widegraph.h getfile.h \ commons.h sleep.h displaytext.h \ - logqso.h + logqso.h \ + psk_reporter.h DEFINES += __cplusplus