memgraph/data_structures/slrbtree.hpp
2015-06-22 21:30:48 +02:00

19 lines
263 B
C++

#ifndef MEMGRAPH_DATA_STRUCTURES_SLRBTREE_HPP
#define MEMGRAPH_DATA_STRUCTURES_SLRBTREE_HPP
#include <map>
#include "utils/sync/spinlock.hpp"
template <class K, class T>
class SlRbTree
{
public:
private:
SpinLock lock;
std::map<K, T> tree;
};
#endif