2013-06-22 18:37:18 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
2013-01-19 20:12:40 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
|
|
|
TAnimation Animation;
|
|
|
|
|
|
|
|
MainWindow w;
|
|
|
|
|
|
|
|
w.SetAnimation(&Animation);
|
|
|
|
Animation.SetMainWindow(&w);
|
|
|
|
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|