summaryrefslogtreecommitdiffstats
path: root/src/vigra-test.cpp
blob: 7c7c95b02bc7c82d5bac3c1e8b971860608af8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* This file is part of mingw-cross-env.       */
/* See doc/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;
}