tools/templates/main.cpp
author koda
Sat, 23 Apr 2016 16:17:15 -0400
changeset 11680 5ce2cf06b531
parent 359 59fbfc65fbda
permissions -rw-r--r--
Set cdecl on exported functions and hide them from pas2c

#include <QApplication>

#include "mainform.h"

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