X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=InputEventManager%2Fsrc%2Fmain.cpp;h=f710cb40de8550f5a1ba72aa004bbd611f2fb6de;hb=09f2f0036f122e49aa49e6c446d723850192a725;hp=afd36d7cdcebaf7ecc79d928f160ef7379117a95;hpb=1edc5d1bebfd4156b0b58d693f0431d17f20a508;p=staging%2FHomeScreen.git diff --git a/InputEventManager/src/main.cpp b/InputEventManager/src/main.cpp index afd36d7..f710cb4 100644 --- a/InputEventManager/src/main.cpp +++ b/InputEventManager/src/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH + * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,10 @@ #include #include "inputeventmanager.h" +void noOutput(QtMsgType, const QMessageLogContext &, const QString &) +{ +} + int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); @@ -31,8 +35,16 @@ int main(int argc, char *argv[]) parser.setApplicationDescription("AGL InputEventManager - see wwww... for more details"); parser.addHelpOption(); parser.addVersionOption(); + QCommandLineOption quietOption(QStringList() << "q" << "quiet", + QCoreApplication::translate("main", "Be quiet. No outputs.")); + parser.addOption(quietOption); parser.process(a); + if (parser.isSet(quietOption)) + { + qInstallMessageHandler(noOutput); + } + InputEventManager *inputEventManager = new InputEventManager(); return a.exec();