mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
15 lines
316 B
C++
15 lines
316 B
C++
#ifndef STORM_HASH_TS_OBJECT_CHUNK_HPP
|
|
#define STORM_HASH_TS_OBJECT_CHUNK_HPP
|
|
|
|
#include "storm/Array.hpp"
|
|
#include "storm/List.hpp"
|
|
|
|
template <class T, class TKey>
|
|
class TSHashObjectChunk {
|
|
public:
|
|
// Member variables
|
|
TSGrowableArray<T> m_array;
|
|
TSLink<TSHashObjectChunk<T, TKey>> m_link;
|
|
};
|
|
|
|
#endif
|