view src/poppler-test.cxx @ 3995:8b1798b3c47d

gdb: update to v7.9.1 * src/gdb.mk: update version, checksum, disable build of documentation
author John D
date Sat, 11 Jul 2015 08:54:55 -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;
}