mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
15 lines
206 B
C++
15 lines
206 B
C++
|
|
#include <QApplication>
|
|
#include "GraphicsView.hpp"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
GraphicsView view;
|
|
view.show();
|
|
|
|
view.resize(800, 600);
|
|
return app.exec();
|
|
}
|