mxe/src/vigra-test.cpp

20 lines
363 B
C++
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
2011-01-25 11:12:34 +00:00
#include <string>
#include <iostream>
#include <vigra/imageinfo.hxx>
using namespace vigra;
int main(int argc, char *argv[])
{
std::string formats = vigra::impexListFormats();
2011-01-25 11:12:34 +00:00
std::cout << "Supported formats: " << formats << std::endl;
2011-01-25 11:12:34 +00:00
return formats.length() > 0;
}