summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 7ae6558ab228361737f7599a7bef8c9f6b613e71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2013, University of Freiburg,
// Author: Manuel Schneider <ms1144>

#include <QtWidgets/QApplication>  // for Qt5
#include "widget.h"

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  Widget w;
  w.show();
  return a.exec();
}

////////////////////////////////////////////////////////////////////////////////