rwth-info2/versuch00 - alt/main.cpp

13 lines
193 B
C++
Executable File

#include "testprogramm.h"
#include <QtGui>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
testProgramm w;
w.show();
return a.exec();
}