ospkit
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

main.cpp
text/x-c++src

Download raw (172 bytes)

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

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

    return a.exec();
}