Parsing X Reference table

This commit is contained in:
Jakub Melka
2018-11-21 19:30:15 +01:00
parent 58ad59e407
commit 8c93c82228
19 changed files with 625 additions and 58 deletions

12
PdfForQtViewer/main.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "pdfviewermainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
pdfviewer::PDFViewerMainWindow w;
w.show();
return a.exec();
}