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/Array.h | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) (limited to 'arm_compute/runtime/Array.h') diff --git a/arm_compute/runtime/Array.h b/arm_compute/runtime/Array.h index 61e0953edd..4fc79026e0 100644 --- a/arm_compute/runtime/Array.h +++ b/arm_compute/runtime/Array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -61,15 +61,27 @@ private: std::unique_ptr _values; }; -using KeyPointArray = Array; -using Coordinates2DArray = Array; +/** Array of Key Points. */ +using KeyPointArray = Array; +/** Array of 2D Coordinates. */ +using Coordinates2DArray = Array; +/** Array of Detection Windows. */ using DetectionWindowArray = Array; -using Size2DArray = Array; -using UInt8Array = Array; -using UInt16Array = Array; -using UInt32Array = Array; -using Int16Array = Array; -using Int32Array = Array; -using FloatArray = Array; +/** Array of ROIs. */ +using ROIArray = Array; +/** Array of 2D Sizes. */ +using Size2DArray = Array; +/** Array of uint8s. */ +using UInt8Array = Array; +/** Array of uint16s. */ +using UInt16Array = Array; +/** Array of uint32s. */ +using UInt32Array = Array; +/** Array of int16s. */ +using Int16Array = Array; +/** Array of int32s. */ +using Int32Array = Array; +/** Array of floats. */ +using FloatArray = Array; } #endif /* __ARM_COMPUTE_ARRAY_H__ */ -- cgit v1.2.1