代码拉取完成,页面将自动刷新
#include "robot.h"
#include <QCoreApplication>
#include <QDebug>
#include <QDir>
#ifdef TEST
#include "Test/tst_sherpa.h"
#include <QTest>
QTEST_GUILESS_MAIN(tst_sherpa);
#else
#ifdef BREAKPAD
#include "client/linux/handler/exception_handler.h"
#include "Utils/config.h"
static bool dumpCallback(const google_breakpad::MinidumpDescriptor &descriptor,
void *context, bool succeeded) {
qInfo() << "Dump path:" << descriptor.path();
return succeeded;
}
#endif
int main(int argc, char *argv[]) {
QCoreApplication a(argc, argv);
// 设置PWD
QString applicationDirPathStr = QCoreApplication::applicationDirPath();
QDir::setCurrent(applicationDirPathStr);
#ifdef BREAKPAD
google_breakpad::MinidumpDescriptor descriptor(
Config::getDataPath("Tmp").toStdString()); // minidump文件写入到的目录
google_breakpad::ExceptionHandler eh(descriptor, NULL, dumpCallback, NULL,
true, -1);
#endif
QCoreApplication::addLibraryPath(QDir::homePath() +
"/.config/QSmartAssistant/plugins/lib");
Robot *robot = new Robot(&a);
robot->start();
a.connect(&a, &QCoreApplication::aboutToQuit, &a, [=]() {
qDebug() << "stop";
robot->stop();
});
return a.exec();
}
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。