view src/vigra-test.cpp @ 3316:f11beaa3e1f0

mk-dist: Don't set -j option to 9 by default. Use --jobs or settings.mk file to override. * mk-dist: Don't set -j option to 9 by default.
author Rik <rik@octave.org>
date Tue, 12 Nov 2013 14:40:58 -0800
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;
}