view src/vigra-test.cpp @ 4548:e475dae96add

build-flex: update to v2.6.4 * src/build-flex.mk: update version, checksum and URL, depend on lzip
author John D
date Mon, 27 Nov 2017 08:52:01 -0500
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;
}