Initial commit with empty qt client and empty 'server'
This commit is contained in:
10
client/main.cpp
Normal file
10
client/main.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "ui/mainwindow.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
QApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user