main.cpp
12 lines
| 201 B
| text/x-c
|
CppLexer
/ wfdisplaytest / main.cpp
admin@pc-p-leroy3.LAB-LPP.LOCAL
|
r35 | #include <QtGui/QApplication> | ||
#include "mainwindow.h" | ||||
#include <QVBoxLayout> | ||||
int main(int argc, char *argv[]) | ||||
{ | ||||
QApplication a(argc, argv); | ||||
MainWindow w; | ||||
w.show(); | ||||
return a.exec(); | ||||
} | ||||