File: main.cpp

package info (click to toggle)
threadweaver 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,312 kB
  • sloc: cpp: 7,345; python: 33; sh: 13; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <QApplication>

#include "MainWidget.h"
#include "ViewController.h"

//@@snippet_begin(hellointernet-main)
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWidget w;
    ViewController v(&w);
    w.show();
    a.exec();
}
//@@snippet_end