blob: b0ba96c22e87c4e5f4807db996267c46a67011a5 [file] [log] [blame]
#include <QtCore/QtCore>
#define UNSTABLE_POPPLER_QT4
#include <poppler-qt4.h>
int main( int argc, char **argv )
{
QCoreApplication a( argc, argv ); // QApplication required!
Poppler::Document *doc = Poppler::Document::load("../../../test/unittestcases/UseNone.pdf");
if (!doc)
{
exit(1);
}
if ( !(doc->pageLayout() == Poppler::Document::NoLayout ) )
{
exit(1);
}
exit(0);
}