/* * This file is part of MXE. See LICENSE.md for licensing information. */ #include #include int main(int argc, char *argv[]) { (void)argc; (void)argv; LibRaw libRaw; std::cout << "This is libraw version " << libRaw.version() << std::endl; std::cout << libRaw.cameraCount() << " cameras supported." << std::endl; return 0; }