Reflect changes in Settings class interface.
[yandex-traffic] / tests / settings / main.cpp
1 #include <QtGui>
2
3 #include "settings.hpp"
4 #include "settingsDialog.hpp"
5
6 int main(int argc, char *argv[])
7 {
8     QApplication app (argc, argv);
9     SettingsDialog dlg (Settings::instance ());
10
11     dlg.show ();
12
13     return app.exec ();
14 }