rwth-info2/versuch00 - alt/main.cpp

13 lines
193 B
C++
Raw Normal View History

2011-04-25 19:57:49 +00:00
#include "testprogramm.h"
#include <QtGui>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
testProgramm w;
w.show();
return a.exec();
}