File:  [Local Repository] / imach / imach-gui / main.cpp
Revision 1.1: download - view: text, annotated - select for diffs
Tue Feb 27 23:00:08 2018 UTC (6 years, 3 months ago) by brouard
Branches: MAIN
CVS tags: HEAD
Summary: imach gui

#include "dialog.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Dialog w;
    w.setWindowTitle("Imach-Gui Dialog");
    w.show();

    return a.exec();
}


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>