← index
Qt.Projects/source/desktop/001.hello_world/main.cpp
Source: Qt.Projects/source/desktop/001.hello_world/main.cpp
#include"main_window.hpp"
#include<QApplication>

int main(int argc, char **argv) {
    QApplication app(argc, argv);
    HelloWorld hello_world;
    hello_world.show();
    return app.exec();
}