summaryrefslogtreecommitdiffstats
path: root/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2016-01-11 17:08:02 +0200
committerMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2016-01-12 14:40:58 +0000
commitdb2a90fa9b4f823d37e02545732ff815ca9a1726 (patch)
treea40bdc88dbaf0d7538ab1c8cfa5f003c65586cf2 /tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h
parent64f0d4fb353ae2e447483897839d4df8b5b32f54 (diff)
Remove some manual test apps
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ää <tomi.korpipaa@theqtcompany.com>
Diffstat (limited to 'tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h')
-rw-r--r--tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h b/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h
deleted file mode 100644
index 57602211..00000000
--- a/tests/manual/kinectsurface/QtKinectWrapper/OpenNI/Include/XnStringsHashT.h
+++ /dev/null
@@ -1,90 +0,0 @@
-#ifndef _XN_STRINGS_HASH_T_H_
-#define _XN_STRINGS_HASH_T_H_
-
-//---------------------------------------------------------------------------
-// Includes
-//---------------------------------------------------------------------------
-#include "XnHashT.h"
-
-//---------------------------------------------------------------------------
-// Code
-//---------------------------------------------------------------------------
-class XnStringsHashKeyManager
-{
-public:
- static XnHashCode Hash(const XnChar* const& key)
- {
- XnUInt32 nCRC = 0;
- xnOSStrCRC32(key, &nCRC);
-
- // convert from UINT32 to XnHashValue
- return nCRC % (1 << (sizeof(XnHashCode)*8));
- }
-
- static XnInt32 Compare(const XnChar* const& key1, const XnChar* const& key2)
- {
- return strcmp(key1, key2);
- }
-};
-
-template<class TValue>
-class XnStringsNodeAllocator
-{
-public:
- typedef XnKeyValuePair<const XnChar*, TValue> TPair;
- typedef XnLinkedNodeT<TPair> TLinkedNode;
-
- static TLinkedNode* Allocate(TPair const& pair)
- {
- XnChar* pKeyCopy = xnOSStrDup(pair.Key());
- if (pKeyCopy == NULL)
- {
- return NULL;
- }
-
- return XN_NEW(TLinkedNode, TPair(pKeyCopy, pair.Value()));
- }
-
- static void Deallocate(TLinkedNode* pNode)
- {
- XN_ASSERT(pNode != NULL);
- XN_ASSERT(pNode->value.Key() != NULL);
-
- xnOSFree(pNode->value.Key());
- XN_DELETE(pNode);
- }
-};
-
-template<class TValue>
-class XnStringsHashT : public XnHashT<const XnChar*, TValue, XnStringsHashKeyManager, XnStringsNodeAllocator<TValue> >
-{
- typedef XnHashT<const XnChar*, TValue, XnStringsHashKeyManager, XnStringsNodeAllocator<TValue> > Base;
-
-public:
- XnStringsHashT() : Base() {}
-
- XnStringsHashT(const XnStringsHashT& other) : Base()
- {
- *this = other;
- }
-
- XnStringsHashT& operator=(const XnStringsHashT& other)
- {
- Base::operator=(other);
- // no other members
- return *this;
- }
-};
-
-class XnStringsSet : public XnStringsHashT<void*>
-{
- typedef XnStringsHashT<void*> Base;
-
-public:
- XnStatus Set(const XnChar* key)
- {
- return Base::Set(key, NULL);
- }
-};
-
-#endif // _XN_STRINGS_HASH_T_H_ \ No newline at end of file