10 lines
187 B
C++
10 lines
187 B
C++
|
#pragma once
|
||
|
|
||
|
#include "data_structures/skiplist/skiplist_map.hpp"
|
||
|
|
||
|
template<class K, class T>
|
||
|
class ConcurrentMap : public SkipListMap<K, T>
|
||
|
{
|
||
|
// TODO implement with SkipList
|
||
|
};
|