diff options
Diffstat (limited to 'src/vigra-test.cpp')
-rw-r--r-- | src/vigra-test.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/vigra-test.cpp b/src/vigra-test.cpp index 7c7c95b..538a409 100644 --- a/src/vigra-test.cpp +++ b/src/vigra-test.cpp @@ -1,5 +1,7 @@ -/* This file is part of mingw-cross-env. */ -/* See doc/index.html for further information. */ +/* + * This file is part of MXE. + * See index.html for further information. + */ #include <string> #include <iostream> @@ -10,8 +12,8 @@ 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; } |