Move project files to map65 sub-directory

Preparation for merging with the wsjtx project repository.
This commit is contained in:
Bill Somerville
2021-04-09 13:57:41 +01:00
parent 7c673b41be
commit 280c8344cd
240 changed files with 10338 additions and 10338 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifdef QT5
#include <QtWidgets>
#else
#include <QtGui>
#endif
#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}