view src/vigra-test.cpp @ 4239:016aa52965bb

Update README.html for the 4.2 release. * installer-files/README.html: Update for 4.2 release.
author Rik <rik@octave.org>
date Thu, 03 Nov 2016 09:35:20 -0700
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;
}