Settings dialog categories.
[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     Settings settings;
10     SettingsDialog dlg (&settings);
11
12     dlg.show ();
13
14     return app.exec ();
15 }