view src/poppler-test.cxx @ 4578:cc5c74d855f3

* src/wxwidgets.mk: update version, checksum for v3.0.3.1
author John D
date Tue, 05 Dec 2017 13:16:41 -0500
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;
}