haraldhv
/
aigo
Archived
1
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
aigo/qt/main.cpp

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