tools/templates/main.cpp
author nemo
Mon, 29 Oct 2012 10:39:46 -0400
changeset 7875 250f0e7fa7ae
parent 359 59fbfc65fbda
permissions -rw-r--r--
darken and contrast the gray images to distinguish more easily from pink

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}