tools/templates/main.cpp
author unc0rr
Tue, 17 Jun 2008 21:28:15 +0000
changeset 1005 9d2e8f3a4fa6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update copyright information

#include <QApplication>

#include "mainform.h"

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