OpenCores
URL https://opencores.org/ocsvn/bw_tiff_compression/bw_tiff_compression/trunk

Subversion Repositories bw_tiff_compression

[/] [bw_tiff_compression/] [trunk/] [client_application/] [src/] [main.cpp] - Rev 16

Compare with Previous | Blame | View Log

/*
 * @file     main.cpp
 * @date     May 14, 2012
 * @author   Aart Mulder
 */
 
#if QT_MAJOR_VERSION == 4
#include <QtGui/QApplication>
#else
#include <QApplication>
#endif
 
#include "CCITT4Client.h"
 
int main(int argc, char *argv[])
{
    CCCITT4Client *pApp;
 
    QApplication a(argc, argv);
 
    if(argc > 1)
    {
        pApp = new CCCITT4Client(NULL, QString(argv[1]));
    }
    else
    {
        pApp = new CCCITT4Client();
    }
 
    pApp->show();
 
    return a.exec();
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.