Add 2017 to copyright
[staging/HomeScreen.git] / HomeScreenAppFrameworkBinderAGL / src / main.cpp
index 2d88537..12ed15c 100644 (file)
@@ -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.
 #include <QCommandLineParser>
 #include "homescreenappframeworkbinderagl.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 Application Framwork Proxy - 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);
+    }
+
     qDBusRegisterMetaType<AppInfo>();
     qDBusRegisterMetaType<QList<AppInfo> >();