Files
IfcOpenShell/src/qtviewer/main.cpp
T
2012-07-19 18:26:47 +00:00

26 lines
384 B
C++

#include <QApplication>
#include <QString>
#ifndef QT_NO_OPENGL
#include <QGLFormat>
#endif
#include "mainwindow.h"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
//QGLViewer viewer;
// Restore the previous viewer state.
//viewer.restoreStateFromFile();
MainWindow window;
//window.openFile(" ");
window.show();
return app.exec();
}