tools/templates/main.cpp
author unc0rr
Mon, 13 Oct 2008 14:51:31 +0000
changeset 1348 0eb0b3a955b8
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Remove deprecated stuff - Add a preview to each map, so switching is now 100 times faster

#include <QApplication>

#include "mainform.h"

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