view src/poppler-test.cxx @ 3667:48a6501044c0

pstoedit: allow native compile with w64 * src/pstoedit-3-nosecapi.patch: new file * dist-files.mk: add patch to file list.
author John Donoghue
date Fri, 25 Jul 2014 10:28:02 -0400
parents 84a15985a644
children
line wrap: on
line source

#include <iostream>
#include <cpp/poppler-version.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    std::cout << "Poppler version: " << poppler::version_string() << std::endl;

    return 0;
}