view src/poppler-test.cxx @ 4075:423925d2c032

installer: run pkg rebuild in installer * makeinst-script.sh: add InstallPackages section with run of octave to install the packages index
author John Donoghue
date Wed, 06 Jan 2016 15:59:43 -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;
}