Add options get set

This commit is contained in:
John Zhao
2018-04-10 00:26:22 +08:00
parent ef38681bd1
commit 490185a577
6 changed files with 240 additions and 5 deletions

View File

@@ -391,6 +391,16 @@ struct MYNTEYE_API ImuData {
}
};
/**
* @ingroup datatypes
* Option info.
*/
struct MYNTEYE_API OptionInfo {
std::int32_t min;
std::int32_t max;
std::int32_t def;
};
MYNTEYE_END_NAMESPACE
#endif // MYNTEYE_TYPES_H_ NOLINT