From c357c47be8a3f210f9eee9a05cc13f1051b036d3 Mon Sep 17 00:00:00 2001 From: Alex Gilday Date: Wed, 21 Mar 2018 13:54:09 +0000 Subject: COMPMID-1008: Fix Doxygen issues Change-Id: Ie73d8771f85d1f5b059f3a56f1bbd73c98e94a38 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/124723 Reviewed-by: Michalis Spyrou Tested-by: Jenkins --- arm_compute/runtime/CL/CLArray.h | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) (limited to 'arm_compute/runtime/CL/CLArray.h') diff --git a/arm_compute/runtime/CL/CLArray.h b/arm_compute/runtime/CL/CLArray.h index dda26e2e89..01c6d8df3d 100644 --- a/arm_compute/runtime/CL/CLArray.h +++ b/arm_compute/runtime/CL/CLArray.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -46,7 +46,9 @@ public: CLArray(const CLArray &) = delete; /** Prevent instances of this class from being copied (As this class contains pointers) */ CLArray &operator=(const CLArray &) = delete; - CLArray(CLArray &&) = default; + /** Allow instances of this class to be move constructed */ + CLArray(CLArray &&) = default; + /** Allow instances of this class to be moved */ CLArray &operator=(CLArray &&) = default; /** Constructor: initializes an array which can contain up to max_num_points values * @@ -101,16 +103,27 @@ private: cl::Buffer _buffer; }; -using CLKeyPointArray = CLArray; -using CLCoordinates2DArray = CLArray; +/** OpenCL Array of Key Points. */ +using CLKeyPointArray = CLArray; +/** OpenCL Array of 2D Coordinates. */ +using CLCoordinates2DArray = CLArray; +/** OpenCL Array of Detection Windows. */ using CLDetectionWindowArray = CLArray; -using CLROIArray = CLArray; -using CLSize2DArray = CLArray; -using CLUInt8Array = CLArray; -using CLUInt16Array = CLArray; -using CLUInt32Array = CLArray; -using CLInt16Array = CLArray; -using CLInt32Array = CLArray; -using CLFloatArray = CLArray; +/** OpenCL Array of ROIs. */ +using CLROIArray = CLArray; +/** OpenCL Array of 2D Sizes. */ +using CLSize2DArray = CLArray; +/** OpenCL Array of uint8s. */ +using CLUInt8Array = CLArray; +/** OpenCL Array of uint16s. */ +using CLUInt16Array = CLArray; +/** OpenCL Array of uint32s. */ +using CLUInt32Array = CLArray; +/** OpenCL Array of int16s. */ +using CLInt16Array = CLArray; +/** OpenCL Array of int32s. */ +using CLInt32Array = CLArray; +/** OpenCL Array of floats. */ +using CLFloatArray = CLArray; } #endif /* __ARM_COMPUTE_CLARRAY_H__ */ -- cgit v1.2.1