view src/poppler-test.cxx @ 4041:b32157906949

of-control: update to v2.8.5 * src/of-control.mk: update version, checksum * build_packages.m: update control version
author John D
date Fri, 02 Oct 2015 18:36:48 -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;
}