view src/vigra-test.cpp @ 3672:05e3d28e2e67

qscintilla: add patch for transpose fixes * src/qscintilla-1-transpose-fix.patch: new file. * dist-files.mk: add qscintilla-1-transpose-fix.patch.
author John Donoghue
date Fri, 01 Aug 2014 09:16:07 -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;
}