summaryrefslogtreecommitdiff
path: root/include/libcamera/controls.h
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-10-27 07:30:43 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-11-20 21:47:29 +0200
commitc27b7c103a7d0e8a6ca02b5f6e42372d1ee6993e (patch)
treee2b2bdd88f5ba2765c8d237b2871656e5702fec1 /include/libcamera/controls.h
parent76b9923e55fd615d0edf065085a4c14475304868 (diff)
libcamera: controls: Add operator== and operator!= to ControlRange
Allow comparision of control ranges by adding the required operators. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'include/libcamera/controls.h')
-rw-r--r--include/libcamera/controls.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/libcamera/controls.h b/include/libcamera/controls.h
index 42e6df7e..f24dc764 100644
--- a/include/libcamera/controls.h
+++ b/include/libcamera/controls.h
@@ -112,6 +112,16 @@ public:
std::string toString() const;
+ bool operator==(const ControlRange &other) const
+ {
+ return min_ == other.min_ && max_ == other.max_;
+ }
+
+ bool operator!=(const ControlRange &other) const
+ {
+ return !(*this == other);
+ }
+
private:
ControlValue min_;
ControlValue max_;