Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
#include <QApplication> #include <stdlib.h> #include <time.h> #include "tetrixwindow.h" using namespace std; int main(int argc, char *argv[]) { QApplication app(argc,argv); TetrixWindow window; app.setMainWidget(&window); window.show(); srand(time(0)); return app.exec(); }
Copyright © 2004 Trolltech | Trademarks | Qt 4.0.0-b1 |