memgraph/data_structures/sllist.hpp
2015-06-22 14:31:26 +02:00

13 lines
198 B
C++

#ifndef MEMGRAPH_DATA_STRUCTURES_SLLIST_HPP
#define MEMGRAPH_DATA_STRUCTURES_SLLIST_HPP
#include <list>
template <class T,
class allocator=std::allocator<T>>
class SafeList
{
};
#endif