view src/vigra-test.cpp @ 6064:ae29ff83307f release

src/of-instrument-control.mk: update to v0.7.1 (grafted from 50d4dfce916c2aa2373d2b65ca577adeb46d0780)
author John Donoghue <john.donoghue@ieee.org>
date Sat, 15 Jan 2022 08:18:21 -0500
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;
}