view src/vigra-test.cpp @ 3894:3fcb38c52a01

og-generate_hmtl: add to mxe-octave * src/of-generate_html.mk: new file * dist-files.mk: add of-generate_html.mk * index.html: add of-generate_html * build_packages.m: add generate_html
author John Donoghue
date Fri, 10 Apr 2015 08:35:32 -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;
}