mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 14:03:07 +01:00
17 lines
224 B
C++
17 lines
224 B
C++
#ifndef FB_LIST_H
|
|
#define FB_LIST_H
|
|
|
|
#include "../common/classes/alloc.h"
|
|
|
|
#include <list>
|
|
|
|
namespace Firebird
|
|
{
|
|
template <class T>
|
|
class list : public std::list<T, Firebird::allocator<T> >
|
|
{
|
|
};
|
|
};
|
|
|
|
#endif // FB_LIST_H
|