literaldraw
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

main.cpp
text/x-c++src

Download raw (182 bytes)

#include <QtWidgets/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}