From db2a90fa9b4f823d37e02545732ff815ca9a1726 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Mon, 11 Jan 2016 17:08:02 +0200 Subject: Remove some manual test apps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed - Kinectsurface - Has 3rd party code. - qmlcamera - Ugly mess and kinda pointless. - qmlmultiwindow - Test is not relevant and is buggy. - spectrum - Has 3rd party code. Change-Id: Ic28ffddf9e45f51a5320d4ebd0e2b7b373452cb7 Reviewed-by: Tomi Korpipää --- .../OpenNI/Include/XnEnumerationErrors.h | 142 --------------------- 1 file changed, 142 deletions(-) delete mode 100644 tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnEnumerationErrors.h (limited to 'tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnEnumerationErrors.h') diff --git a/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnEnumerationErrors.h b/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnEnumerationErrors.h deleted file mode 100644 index 4a1d77ce..00000000 --- a/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnEnumerationErrors.h +++ /dev/null @@ -1,142 +0,0 @@ -/**************************************************************************** -* * -* OpenNI 1.x Alpha * -* Copyright (C) 2011 PrimeSense Ltd. * -* * -* This file is part of OpenNI. * -* * -* OpenNI is free software: you can redistribute it and/or modify * -* it under the terms of the GNU Lesser General Public License as published * -* by the Free Software Foundation, either version 3 of the License, or * -* (at your option) any later version. * -* * -* OpenNI is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU Lesser General Public License for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with OpenNI. If not, see . * -* * -****************************************************************************/ -#ifndef __XN_ENUMERATION_ERRORS_H__ -#define __XN_ENUMERATION_ERRORS_H__ - -//--------------------------------------------------------------------------- -// Includes -//--------------------------------------------------------------------------- -#include - -/** - * @ingroup cref - * @defgroup enum_errors Enumeration Errors - * This page details functions for managing an Enumeration Errors object. - * - * @section enum Enumeration - * - * The following code iterates over an enumeration errors object: - * @code -for (XnEnumerationErrorsIterator it = xnEnumerationErrorsGetFirst(pList); - xnEnumerationErrorsIteratorIsValid(it); - it = xnEnumerationErrorsGetNext(it)) -{ - const XnProductionNodeDescription* pCurrDesc = xnEnumerationErrorsGetCurrentDescription(it); - XnStatus nCurrError = xnEnumerationErrorsGetCurrentError(it); - ... -} - * @endcode - * @{ - */ - -//--------------------------------------------------------------------------- -// Types -//--------------------------------------------------------------------------- -/** - * Represents an iterator for an @ref XnEnumerationErrors object. - */ -typedef struct XnModuleError* XnEnumerationErrorsIterator; - -//--------------------------------------------------------------------------- -// Functions -//--------------------------------------------------------------------------- - - -/** - * Allocates an enumeration errors object. - * - * @param ppErrors [out] The allocated object - */ -XN_C_API XnStatus XN_C_DECL xnEnumerationErrorsAllocate(XnEnumerationErrors** ppErrors); - -/** - * Frees an enumeration errors object - * - * @param pErrors [in] Parameter description - */ -XN_C_API void XN_C_DECL xnEnumerationErrorsFree(const XnEnumerationErrors* pErrors); - -/** - * Adds an error to the object. - * - * @param pErrors [in] Enumeration Errors object. - * @param pDesc [in] Description of the failing module. - * @param nError [in] The enumeration error that occurred. - */ -XN_C_API XnStatus XN_C_DECL xnEnumerationErrorsAdd(XnEnumerationErrors* pErrors, const XnProductionNodeDescription* pDesc, XnStatus nError); - -/** - * Returns a string representation of the Enumeration Errors object. - * - * @param pErrors [in] Enumeration Errors object. - * @param csBuffer [in] A char buffer to be filled. - * @param nSize [in] Size of the char buffer. - */ -XN_C_API XnStatus XN_C_DECL xnEnumerationErrorsToString(const XnEnumerationErrors* pErrors, XnChar* csBuffer, XnUInt32 nSize); - -/** - * Clears an Enumeration Errors object from all errors in it. - * - * @param pErrors [in] Enumeration Errors object. - */ -XN_C_API XnStatus XN_C_DECL xnEnumerationErrorsClear(XnEnumerationErrors* pErrors); - -/** - * Gets an iterator to the first error in the object. - * - * @param pErrors [in] Enumeration Errors object. - */ -XN_C_API XnEnumerationErrorsIterator XN_C_DECL xnEnumerationErrorsGetFirst(const XnEnumerationErrors* pErrors); - -/** - * Gets an iterator to the next error in the object. - * - * @param it [in] An iterator to an error in the object. - */ -XN_C_API XnEnumerationErrorsIterator XN_C_DECL xnEnumerationErrorsGetNext(XnEnumerationErrorsIterator it); - -/** - * Checks if an iterator is valid (i.e. points to a real error) - * - * @param it [in] The iterator to check. - */ -XN_C_API XnBool XN_C_DECL xnEnumerationErrorsIteratorIsValid(XnEnumerationErrorsIterator it); - -/** - * Gets the description of the node from current error. - * - * @param it [in] The iterator to the error. - */ -XN_C_API const XnProductionNodeDescription* XN_C_DECL xnEnumerationErrorsGetCurrentDescription(XnEnumerationErrorsIterator it); - -/** - * Gets the enumeration error caused when enumerating the node. - * - * @param it [in] The iterator to the error. - */ -XN_C_API XnStatus XN_C_DECL xnEnumerationErrorsGetCurrentError(XnEnumerationErrorsIterator it); - -/** - * @} - */ - -#endif // __XN_ENUMERATION_ERRORS_H__ -- cgit v1.2.3