view src/vigra-test.cpp @ 4461:cc4433ef0b89

configure: build with Qt 5 by default now * configure.ac: Make ENABLE_QT5=yes the default, specify --disable-qt5 to build with Qt 4.
author Mike Miller <mtmiller@octave.org>
date Thu, 31 Aug 2017 15:53:33 -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;
}