diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/controls.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h index 6f0ebf4f..4538be06 100644 --- a/include/libcamera/controls.h +++ b/include/libcamera/controls.h @@ -12,6 +12,8 @@ #include <string> #include <unordered_map> +#include <libcamera/span.h> + namespace libcamera { class ControlValidator; @@ -65,6 +67,7 @@ public: ControlType type() const { return type_; } bool isNone() const { return type_ == ControlTypeNone; } + Span<const uint8_t> data() const; std::string toString() const; |