mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
JBIG2 file viewer
This commit is contained in:
16
JBIG2_Viewer/main.cpp
Normal file
16
JBIG2_Viewer/main.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include "mainwindow.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
|
||||
QCoreApplication::setOrganizationName("MelkaJ");
|
||||
QCoreApplication::setApplicationName("JBIG2_image_viewer");
|
||||
QCoreApplication::setApplicationVersion("1.0");
|
||||
|
||||
MainWindow w;
|
||||
w.show();
|
||||
return a.exec();
|
||||
}
|
Reference in New Issue
Block a user