Determine kind of internet connection we are using GSM or WLAN.
[yandex-traffic] / tests / conn / main.cpp
1 #include <QtGui>
2 #include "mainwindow.hpp"
3
4
5 int main(int argc, char *argv[])
6 {
7     QApplication app (argc, argv);
8     MainWindow w;
9
10     w.show ();
11
12     return app.exec ();
13 }