squall/storm/hash/TSHashObject.hpp

18 lines
318 B
C++
Raw Permalink 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;
};
#endif