File indexing completed on 2024-05-12 15:50:10

0001 #include <QApplication>
0002 
0003 #include "MainWidget.h"
0004 #include "ViewController.h"
0005 
0006 //@@snippet_begin(hellointernet-main)
0007 int main(int argc, char *argv[])
0008 {
0009     QApplication a(argc, argv);
0010     MainWidget w;
0011     ViewController v(&w);
0012     w.show();
0013     a.exec();
0014 }
0015 //@@snippet_end