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