main.cpp 213 B

123456789101112
  1. #include <QCoreApplication>
  2. #include "guardcore.h"
  3. int main(int argc, char *argv[])
  4. {
  5. QCoreApplication a(argc, argv);
  6. GuardCore *core = new GuardCore(nullptr);
  7. core->start();
  8. return a.exec();
  9. }