tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 04:00:10 +0100
changeset 12972 d82e4e583805
parent 359 59fbfc65fbda
permissions -rw-r--r--
Construction Mode: Fix annoying extra messages when using object placer This is done by moving object placer away from the drill strike, which permits timer keys.

#include <QApplication>

#include "mainform.h"

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