Skip to content
Snippets Groups Projects
Select Git revision
  • 9d38e3602b2faf37d861729c52690ce51b8fee97
  • master default protected
2 results

files.js

Blame
  • main.cpp 172 B
    #include "mainwindow.h"
    #include <QApplication>
    
    int main(int argc, char *argv[])
    {
        QApplication a(argc, argv);
        MainWindow w;
        w.show();
    
        return a.exec();
    }