view src/poppler-test.cxx @ 7119:012db57467c4

* src/of-matgeom.mk: update to v1,2,4
author John Donoghue <john.donoghue@ieee.org>
date Sun, 24 Mar 2024 16:50:14 -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;
}