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.

main.cpp 284B

1234567891011121314
  1. #include "widget.h"
  2. #include <QApplication>
  3. #include "epimafia.h"
  4. #include "QTextCodec"
  5. int main(int argc, char *argv[])
  6. {
  7. QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
  8. QApplication a(argc, argv);
  9. Widget w;
  10. w.show();
  11. return a.exec();
  12. }