Go to the documentation of this file.00001
00002 #include <QApplication>
00003 #include "window.h"
00004
00005 int main(int argc, char *argv[])
00006 {
00007 QApplication app(argc, argv);
00008 Window wdw;
00009 wdw.show();
00010 return app.exec();
00011 }