21 lines
307 B
C++
21 lines
307 B
C++
|
#include <QApplication>
|
||
|
//#include <QGLFormat>
|
||
|
#include "aigoqt.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
|
||
|
/*
|
||
|
QGLFormat f;
|
||
|
f.setDoubleBuffer(true);
|
||
|
f.setRgba(true);
|
||
|
f.setDepth(true);
|
||
|
QGLFormat::setDefaultFormat(f);
|
||
|
*/
|
||
|
|
||
|
AigoQt vindu;
|
||
|
vindu.show();
|
||
|
return app.exec();
|
||
|
}
|