memgraph/data_structures/slrbtree.hpp
2015-10-08 00:58:29 +02:00

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