Initial import
This commit is contained in:
commit
94611f2381
10 changed files with 258 additions and 0 deletions
15
source/main.cpp
Normal file
15
source/main.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "mainwindow.h"
|
||||
#include <QApplication>
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
std::cout << "qEcho" << std::endl;
|
||||
|
||||
QApplication a(argc, argv);
|
||||
MainWindow w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue