view src/poppler-test.cxx @ 4431:aade3b63d8d3

gsl: update to 2.4 * src/gsl.mk: update version, checksum
author John D
date Fri, 21 Jul 2017 16:35:46 -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;
}