summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtabletevent/main.cpp
blob: 4014d580c08775c1ab261299612c3a878bf1ce2c (plain)
1
2
3
4
5
6
7
8
9
#include <QtGui>
#include "tabletwidget.h"

int main(int argc, char **argv) {
  QApplication app(argc, argv);
  TabletWidget tabletWidget;
  tabletWidget.showMaximized();
  return app.exec();
}