You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
261 B

  1. #include "MainWindow.h"
  2. #include <QApplication>
  3. #include "ZTStats.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication a(argc, argv);
  7. CMainWindow w;
  8. CZTStats Program(&w);
  9. Program.Init();
  10. Program.Run();
  11. w.show();
  12. return a.exec();
  13. }