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, 4 months ago) by brouard
Branches: MAIN
CVS tags: HEAD
Summary: imach gui

    1: #include "dialog.h"
    2: #include <QApplication>
    3: 
    4: int main(int argc, char *argv[])
    5: {
    6:     QApplication a(argc, argv);
    7:     Dialog w;
    8:     w.setWindowTitle("Imach-Gui Dialog");
    9:     w.show();
   10: 
   11:     return a.exec();
   12: }
   13: 

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