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 199B

12345678910111213
  1. #include <QCoreApplication>
  2. #include "test.h"
  3. int main(int argc, char *argv[])
  4. {
  5. QCoreApplication a(argc, argv);
  6. Test t;
  7. t.testListen(6950);
  8. t.test0IntConvert();
  9. return a.exec();
  10. }