From 945eedaf2f1106b1ac580cb43f259d33c785776c Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Wed, 15 Jul 2020 01:49:32 +0300 Subject: libcamera: geometry: Turn Size and Rectangle into classes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SizeRange is defined as a class while Size and Rectangle are defined as struct. This is confusing for users in forward declarations. Simplify it by turning both structures into classes. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- include/libcamera/geometry.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/libcamera/geometry.h b/include/libcamera/geometry.h index 380248ac..16c94a48 100644 --- a/include/libcamera/geometry.h +++ b/include/libcamera/geometry.h @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * geometry.h - Geometry-related structure + * geometry.h - Geometry-related classes */ #ifndef __LIBCAMERA_GEOMETRY_H__ @@ -13,7 +13,9 @@ namespace libcamera { -struct Size { +class Size +{ +public: Size() : Size(0, 0) { @@ -126,7 +128,9 @@ static inline bool operator!=(const SizeRange &lhs, const SizeRange &rhs) return !(lhs == rhs); } -struct Rectangle { +class Rectangle +{ +public: Rectangle() : Rectangle(0, 0, 0, 0) { -- cgit v1.2.1