main.cpp 406 B

1234567891011121314151617181920212223242526
  1. 
  2. /**
  3. * 叶海辉
  4. * QQ群121376426
  5. * http://blog.yundiantech.com/
  6. */
  7. #include <QApplication>
  8. #include <QTextCodec>
  9. #include "Widget/VideoPlayerWidget.h"
  10. #undef main
  11. int main(int argc, char *argv[])
  12. {
  13. QApplication a(argc, argv);
  14. QTextCodec *codec = QTextCodec::codecForName("GBK");
  15. QTextCodec::setCodecForLocale(codec);
  16. VideoPlayerWidget w;
  17. w.show();
  18. return a.exec();
  19. }