Files
IfcOpenShell/src/qtviewer/main.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
183 B
C++
Raw Normal View History

#include "MainWindow.h"
2012-06-22 12:28:34 +00:00
#include <QApplication>
2012-06-22 12:28:34 +00:00
int main(int argc, char *argv[])
2012-06-22 12:28:34 +00:00
{
QApplication app(argc, argv);
2012-06-22 12:28:34 +00:00
MainWindow window;
2012-06-22 12:28:34 +00:00
window.show();
return app.exec();
}