| Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions |
/****************************************************************
**
** Qt tutorial 1
**
****************************************************************/
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello world!");
hello.resize(100, 30);
hello.show();
return app.exec();
}
| Copyright © 2005 Trolltech | Trademarks | Qt 4.0.0-b2 |