squall/storm/hash/TSHashObject.hpp

22 lines
406 B
C++
Raw Normal View History

2020-11-15 13:20:10 -06:00
#ifndef STORM_HASH_TS_HASH_OBJECT_HPP
#define STORM_HASH_TS_HASH_OBJECT_HPP
#include "storm/List.hpp"
#include <cstdint>
template <class T, class TKey>
class TSHashObject {
public:
// Member variables
uint32_t m_hashval;
TSLink<T> m_linktoslot;
TSLink<T> m_linktofull;
TKey m_key;
2025-04-21 00:03:37 -07:00
TSHashObject & operator=(const TSHashObject &source) {
return *this;
}
2020-11-15 13:20:10 -06:00
};
#endif