AGX Dynamics 2.42.1.1
Loading...
Searching...
No Matches
agxData/HashSet.h
Go to the documentation of this file.
1/*
2Copyright 2007-2025. Algoryx Simulation AB.
3
4All AGX source code, intellectual property, documentation, sample code,
5tutorials, scene files and technical white papers, are copyrighted, proprietary
6and confidential material of Algoryx Simulation AB. You may not download, read,
7store, distribute, publish, copy or otherwise disseminate, use or expose this
8material unless having a written signed agreement with Algoryx Simulation AB, or having been
9advised so by Algoryx Simulation AB for a time limited evaluation, or having purchased a
10valid commercial license from Algoryx Simulation AB.
11
12Algoryx Simulation AB disclaims all responsibilities for loss or damage caused
13from using this software, unless otherwise stated in written agreements with
14Algoryx Simulation AB.
15*/
16
17
18#ifndef AGXDATA_HASH_SET_H
19#define AGXDATA_HASH_SET_H
20
21#if 0
22#include <agx/HashSet.h>
23#include <agxData/ArrayAllocator.h>
24
25namespace agxData
26{
27 template <typename KeyT, typename HashT = agx::HashFn<KeyT>, typename Allocator = ArrayAllocator::Proxy>
28 class HashSet : public agx::HashSet<KeyT, HashT, Allocator>
29 {
30 public:
31 AGX_FORCE_INLINE HashSet(const Allocator& allocator = Allocator()) : agx::HashSet<KeyT, HashT, Allocator>(allocator)
32 {}
33
34 AGX_FORCE_INLINE HashSet& operator=(const HashSet<KeyT, HashT, Allocator>& other)
35 {
37 return *this;
38 }
39 };
40
41 typedef HashSet<agx::UInt32> GenericHashSet;
42}
43AGX_TEMPLATED_TYPE_BINDING(agxData::HashSet, "HashSet")
44#endif
45
46#endif /* AGXDATA_HASH_SET_H */
#define AGX_TEMPLATED_TYPE_BINDING(_Type, _Name)
Definition: Type.h:192
HashSetImplementation< KeyT, HashT, AllocatorT > & operator=(const HashSetImplementation< KeyT, HashT, AllocatorT > &other)
Assignment operator.
Definition: agx/HashSet.h:218
Inheritance with partial specialization due to bug with ref_ptr containers.
Definition: agx/HashSet.h:670
#define AGX_FORCE_INLINE
Definition: macros.h:58
Contains classes for low level data storage for AGX.
Definition: Container.h:23
The agx namespace contains the dynamics/math part of the AGX Dynamics API.