memgraph/data_structures/sllist.hpp

13 lines
198 B
C++
Raw Normal View History

2015-06-22 20:31:26 +08:00
#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