No Description

main.cpp 259B

12345678910111213141516
  1. #include <QApplication>
  2. #include "mainwindow.h"
  3. void test_cypher1();
  4. void test_cypher2();
  5. int main(int argc, char *argv[])
  6. {
  7. //test_cypher1();
  8. //test_cypher2();
  9. QApplication a(argc, argv);
  10. MainWindow w;
  11. w.show();
  12. return a.exec();
  13. }