minimal-qt

A minimal QT application, without the nonsense
git clone https://git.tronto.net/minimal-qt
Download | Log | Files | Refs | README

main.cpp (160B)


      1 #include "mainwindow.h"
      2 
      3 #include <QApplication>
      4 
      5 int main(int argc, char *argv[])
      6 {
      7 	QApplication a(argc, argv);
      8 	MainWindow w;
      9 	w.show();
     10 	return a.exec();
     11 }