18 lines
269 B
C++
18 lines
269 B
C++
#ifndef MEMGRAPH_DATA_STRUCTURES_SLRBTREE_HPP
|
|
#define MEMGRAPH_DATA_STRUCTURES_SLRBTREE_HPP
|
|
|
|
#include <map>
|
|
|
|
#include "threading/sync/spinlock.hpp"
|
|
|
|
template <class K, class T>
|
|
class SlRbTree : Lockable<SpinLock>
|
|
{
|
|
public:
|
|
|
|
private:
|
|
std::map<K, T> tree;
|
|
};
|
|
|
|
#endif
|