2017-01-11 14:04:53 +00:00
|
|
|
#include <QApplication>
|
2017-01-11 14:58:50 +00:00
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include <components/files/configurationmanager.hpp>
|
2017-04-27 03:40:41 +00:00
|
|
|
#include <apps/browser/netutils/QueryClient.hpp>
|
2017-01-12 02:46:48 +00:00
|
|
|
#include "MainWindow.hpp"
|
2017-01-11 14:04:53 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2017-01-12 02:46:48 +00:00
|
|
|
MainWindow d;
|
2017-01-18 14:44:59 +00:00
|
|
|
|
2017-05-19 14:34:20 +00:00
|
|
|
d.show();
|
|
|
|
return app.exec();
|
2017-05-31 05:37:11 +00:00
|
|
|
}
|