Creating reference map widget

This commit is contained in:
Dan Paulat 2021-06-23 21:48:08 -05:00
parent 760e8a52a1
commit b1e00cca83
8 changed files with 631 additions and 30 deletions

View file

@ -0,0 +1,11 @@
#include "main_window.hpp"
#include <QApplication>
int main(int argc, char* argv[])
{
QApplication a(argc, argv);
scwx::qt::MainWindow w;
w.show();
return a.exec();
}