view src/vigra-test.cpp @ 4363:37d9ce07e4d7

of-generate_html: update to 0.2.0 * src/of-generate_html.mk: update version, checksum * changed build_packages.m: update generate_html version
author John D
date Mon, 13 Mar 2017 08:17:08 -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;
}