view src/poppler-test.cxx @ 4156:600b1ae96027

of-interval: update to v1.5.0 * build_packages.m: update interval version * src/of-interval.mk: update version, checksum
author John Donoghue
date Wed, 08 Jun 2016 12:58:22 -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;
}