Content
Updates a recording of the file-sensor using the new file format.
Boost is only used to generate examples and is not necessary for working with this SDK.
#include <boost/test/unit_test.hpp>
#include <conio.h>
#include <iostream>
BOOST_AUTO_TEST_SUITE(example_reconstructmesdk)
BOOST_AUTO_TEST_CASE(recorder_update_fileformat) {
int argc = boost::unit_test::framework::master_test_suite().argc;
char** argv = boost::unit_test::framework::master_test_suite().argv;
if (argc < 3) {
std::cout << "usage: recorder_update_fileformat input_sensor_file output_sensor_file" << std::endl;
exit(-1);
}
}
}
BOOST_AUTO_TEST_SUITE_END()