Files
IfcOpenShell/src/qtviewer/main.cpp
T

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

18 lines
272 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
2023-09-01 14:58:18 +05:30
QIcon appIcon(":/resources/ifcopenshell_logo.png");
MainWindow window;
2023-09-01 14:58:18 +05:30
window.setWindowIcon(appIcon);
2012-06-22 12:28:34 +00:00
window.show();
return app.exec();
}