view src/poppler-test.cxx @ 6181:78c1edaa77be

* src/suitesparse.mk: update to v5.12.0
author John Donoghue <john.donoghue@ieee.org>
date Thu, 21 Apr 2022 13:50: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;
}