view src/poppler-test.cxx @ 2456:4160b352322e

Merge branch 'stable'
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 30 Apr 2012 12:37:57 +0200
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;
}