summaryrefslogblamecommitdiffstats
path: root/src/main.cpp
blob: 7ae6558ab228361737f7599a7bef8c9f6b613e71 (plain) (tree)
1
2
3
4
5
6
7
8

                                          
 
                                             
                   


                                



                             
 
 
                                                                                
// 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();
}

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