Content
Shows how to work with sensors.
Boost is only used to generate examples and is not necessary for working with this SDK.
#include <boost/test/unit_test.hpp>
#include <stdio.h>
BOOST_AUTO_TEST_SUITE(example_reconstructmesdk)
BOOST_AUTO_TEST_CASE(sensor) {
bool supported;
int width, height;
printf("Auxilary supported: %s (%i x %i)", supported ? "true" : "false", width, height);
}
BOOST_AUTO_TEST_SUITE_END()