summaryrefslogtreecommitdiffstats
path: root/src/libraw-test.cpp
blob: 1382bd58ea9efe3d63b9a9922e64ba95f62a2833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <iostream>
#include <libraw.h>

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;
}