main.cpp 209 B

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