view src/poppler-test.cxx @ 4392:84c0a1f07ed4

libsndfile: update to 1.0.28 * src/libsndfile.mk: update version, checksum
author John D
date Mon, 05 Jun 2017 15:41:50 -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;
}