OSDN Git Service

compile ok
[pheasant/hexedit.git] / src / main.cpp
1 #include <QApplication>
2 #include <QLabel>
3
4 int main(int argc, char *argv[])
5 {
6         QApplication app(argc, argv);
7         //List wid;
8         //wid.show();
9         QLabel *label = new QLabel("Hello Qt!");
10         label->show();
11         return app.exec();
12 }
13