view src/poppler-test.cxx @ 4550:88bfbf0fa188

build-m4: update to v1.4.18 * src/build-m4.mk: update version, checksum
author John D
date Mon, 27 Nov 2017 08:54:34 -0500
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;
}