1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-29 10:22:34 +03:00
openwrt-packages/Tile/src/main.cpp

19 lines
304 B
C++
Raw Normal View History

#include <QtGui/QApplication>
#include "tile.h"
#if defined(Q_WS_QWS)
#include <QtGui/QWSServer>
#endif
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tile w;
#if defined(Q_WS_QWS)
QWSServer::setCursorVisible(false);
#endif
w.show();
return a.exec();
}