a85a2d30351de95ace02b98218c0951ba3eab32f
[staging/HomeScreen.git] / InputEventManager / src / main.cpp
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <QCoreApplication>
18 #include <QCommandLineParser>
19 #include "inputeventmanager.h"
20
21 void noOutput(QtMsgType, const QMessageLogContext &, const QString &)
22 {
23 }
24
25 int main(int argc, char *argv[])
26 {
27     QCoreApplication a(argc, argv);
28
29     QCoreApplication::setOrganizationDomain("LinuxFoundation");
30     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
31     QCoreApplication::setApplicationName("InputEventManager");
32     QCoreApplication::setApplicationVersion("0.7.0");
33
34     QCommandLineParser parser;
35     parser.setApplicationDescription("AGL InputEventManager - see wwww... for more details");
36     parser.addHelpOption();
37     parser.addVersionOption();
38     QCommandLineOption quietOption(QStringList() << "q" << "quiet",
39         QCoreApplication::translate("main", "Be quiet. No outputs."));
40     parser.addOption(quietOption);
41     parser.process(a);
42
43     if (parser.isSet(quietOption))
44     {
45         qInstallMessageHandler(noOutput);
46     }
47
48     InputEventManager *inputEventManager = new InputEventManager();
49
50     return a.exec();
51 }