git repos / SagoImageBrowser

src/main.cpp

browsing at commit = c0882fd16c10c8972195f39b3a026b2217e57b02

raw · blame · history

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

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    MainWindow w;
    w.resize(1200, 700);
    w.show();

    return app.exec();
}