Annotation of imach/imach-gui/main.cpp, revision 1.1

1.1     ! brouard     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>