main.cpp 244 B

12345678910111213141516
  1. #include <QCoreApplication>
  2. #include "crosssend.h"
  3. #include "ivbacktrace.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QCoreApplication a(argc, argv);
  7. RegisterIVBackTrace();
  8. crosssend xcross;
  9. xcross.start();
  10. return a.exec();
  11. }