view src/poppler-test.cxx @ 5559:8e03987befd0

* src/of-mapping.mk: update to v1.4.1
author John Donoghue <john.donoghue@ieee.org>
date Sun, 18 Oct 2020 10:13:17 -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;
}