Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Fortran to qt
-
hello,
how we can import Fortran code or python code to qt code, is it possible or not ?
-
Yes, Qt is a library of C++. so your real question is how to call fortran or python code in C++.
For fortran, you can compile you fortran to a library, then link the library to you Qt application.
For python, PythonQt can be used. Or you can directly use the C-API provided by Python itself.