mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file
Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
14
ParaView-5.0.1/VTK/Examples/GUI/Qt/GraphicsView/main.cpp
Normal file
14
ParaView-5.0.1/VTK/Examples/GUI/Qt/GraphicsView/main.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
#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();
|
||||
}
|
||||
Reference in New Issue
Block a user