- Add non-volatile settings for hcp, home club, etc.
[scorecard] / src / main.cpp
1 /*
2  * Copyright (C) 2009 Sakari Poussa
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, version 2.
7  */
8
9 #include <QtCore/QtCore>
10 #include <QtGui/QtGui>
11
12 #include "main-window.h"
13
14 int main(int argc, char *argv[])
15 {
16   QApplication app(argc, argv);
17
18   QCoreApplication::setOrganizationName("garage");
19   QCoreApplication::setOrganizationDomain("maemo.org");
20   QCoreApplication::setApplicationName("ScoreCard");
21
22   MainWindow win;
23   win.show();
24
25   return app.exec();
26 }