mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2024-12-28 17:20:02 +01:00
13 lines
214 B
C++
13 lines
214 B
C++
#include "pdfviewermainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
pdfviewer::PDFViewerMainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|