/* * This file is part of MXE. See LICENSE.md for licensing information. */ #include #include #include 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; }