Renamed main.cpp to qecho.cpp

This commit is contained in:
Michael Mandl 2017-10-16 13:16:05 +02:00
parent 012eaf0e7a
commit d2e774fe5c
2 changed files with 1 additions and 1 deletions

15
source/qecho.cpp Normal file
View 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();
}