view src/poppler-test.cxx @ 3649:154b7f3af5eb

bump version to 0.0.28
author John W. Eaton <jwe@octave.org>
date Tue, 08 Jul 2014 09:59:47 -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;
}