view src/vigra-test.cpp @ 3703:81e0df6182ba

gnutls: update package source download links (Bug #37623) * update PKG_URL from mxe_devel for source of download of gnutls.
author John Donoghue <john.donoghue@ieee.org>
date Mon, 01 Sep 2014 11:58:38 -0400
parents 14b3f5ea78ae
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <string>
#include <iostream>
#include <vigra/imageinfo.hxx>

using namespace vigra;

int main(int argc, char *argv[])
{
    std::string formats = vigra::impexListFormats();

    std::cout << "Supported formats: " << formats << std::endl;

    return formats.length() > 0;
}