squall/storm/hash/TSHashObject.hpp
2026-04-26 17:10:11 +04: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