13 lines
198 B
C++
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
|