squall/storm/hash/TSHashObject.hpp
2025-09-01 13:08:03 -05:00

21 lines
406 B
C++

#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;
TSHashObject & operator=(const TSHashObject &source) {
return *this;
}
};
#endif