Add 2017 to copyright
[staging/HomeScreen.git] / HomeScreenAppFrameworkBinderAGL / src / main.cpp
1 /*
2  * Copyright (C) 2016, 2017 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 "homescreenappframeworkbinderagl.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("HomeScreenAppFrameworkBinderAGL");
32     QCoreApplication::setApplicationVersion("0.7.0");
33
34     QCommandLineParser parser;
35     parser.setApplicationDescription("AGL Application Framwork Proxy - 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     qDBusRegisterMetaType<AppInfo>();
49     qDBusRegisterMetaType<QList<AppInfo> >();
50
51     HomeScreenAppFrameworkBinderAgl *tdp = new HomeScreenAppFrameworkBinderAgl();
52
53     return a.exec();
54 }