File: main.cpp

package info (click to toggle)
qtcreator 3.2.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 104,560 kB
  • sloc: cpp: 767,631; ansic: 108,468; python: 16,917; xml: 14,689; perl: 797; sh: 522; objc: 292; lex: 85; makefile: 62; sed: 12; asm: 5
file content (13 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright license

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}