Device-less widget test infrastructure.
[yandex-traffic] / tests / widget / main.cpp
1 #include <QtCore>
2 #include <mainwidget.hpp>
3
4
5 int main(int argc, char *argv[])
6 {
7     QApplication app (argc, argv);
8     MainWidget w;
9
10     w.show ();
11     return app.exec ();
12 }
13