Added PSK_Reporter cpp and header file skeletons

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3169 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Edson W. R. Pereira 2013-04-14 15:09:35 +00:00
parent fa29bab31d
commit 9175c62b3b
3 changed files with 28 additions and 2 deletions

6
psk_reporter.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "psk_reporter.h"
PSK_Reporter::PSK_Reporter(QObject *parent) :
QObject(parent)
{
}

18
psk_reporter.h Normal file
View File

@ -0,0 +1,18 @@
#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

View File

@ -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