So when I create a new ui project, there is a main.cpp and for example a MainWindow.cpp including a mainwindow.h and ui_mainwindow.h. Where does this MainWindow.cpp get opened when starting the program? It seems like it is just there and QT uses its constructor. QT makes an instance of MainWindow in the main.cpp, but does this automatically include the MainWindow.cpp?
Thanks!